Skip to content

Commit 69aca06

Browse files
committed
test(ci): assert larger QA runners
1 parent 0766a5c commit 69aca06

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

test/scripts/package-acceptance-workflow.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ type WorkflowJob = {
4242
name?: string;
4343
needs?: string | string[];
4444
permissions?: Record<string, string>;
45+
"runs-on"?: string;
4546
"timeout-minutes"?: number | string;
4647
steps?: WorkflowStep[];
4748
};
@@ -1394,9 +1395,12 @@ describe("package artifact reuse", () => {
13941395
"run_live_matrix_sharded",
13951396
"run_live_telegram",
13961397
"run_live_discord",
1398+
"run_live_whatsapp",
1399+
"run_live_slack",
1400+
"run_live_runtime_token_efficiency",
13971401
]) {
1398-
expect(qaWorkflow).toMatch(
1399-
new RegExp(`${jobName}:[\\s\\S]*?runs-on: blacksmith-8vcpu-ubuntu-2404`, "u"),
1402+
expect(workflowJob(QA_LIVE_TRANSPORTS_WORKFLOW, jobName)["runs-on"]).toBe(
1403+
"blacksmith-16vcpu-ubuntu-2404",
14001404
);
14011405
}
14021406
expectTextToIncludeAll(liveE2eWorkflow, [

0 commit comments

Comments
 (0)