Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f554446

Browse files
authoredMar 3, 2025
🤖 Merge PR DefinitelyTyped#72081 Shard out to 16 jobs on runs of all tests by @jakebailey
1 parent 3c8aa48 commit f554446

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎scripts/get-ci-matrix.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
const arg = process.argv[2];
22

3+
const maxAllJobs = 16;
34
const maxJobs = 12;
45

56
let shardCount;
67

78
if (arg === "all") {
8-
shardCount = maxJobs;
9+
shardCount = maxAllJobs;
910
} else {
1011
const testCount = Number.parseInt(arg);
1112
const testsPerJob = 100;

0 commit comments

Comments
 (0)