Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Materialize verified region data
env:
REGION_DATA_BASE_URL: ${{ vars.REGION_DATA_BASE_URL }}
run: node scripts/sync-region-data.mjs --groups region-dist --prune
run: node scripts/sync-region-data.mjs --groups region-dist,region-db --prune

- name: Type check API
run: pnpm --filter api-ground-codes check-types
Expand Down
4 changes: 2 additions & 2 deletions scripts/qa-workflows.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ describe("verified R2 region-data workflow materialization", () => {
}
});

test("syncs region-dist before API verification, import detection, and build", () => {
test("syncs both groups before API verification, import detection, and build", () => {
const workflow = readText("../.github/workflows/deploy-api.yml");
const syncStep = assertPublicSyncStep(workflow, "region-dist");
const syncStep = assertPublicSyncStep(workflow, "region-dist,region-db");
const detectorStep = workflowStep(
workflow,
"Detect changed region datasets",
Expand Down