test: make planner lanes explicit

This commit is contained in:
Peter Steinberger
2026-04-03 12:28:08 +01:00
parent f4393791eb
commit d39e4dff6a
7 changed files with 97 additions and 13 deletions

View File

@@ -1511,7 +1511,7 @@ export function buildCIExecutionManifest(scopeInput = {}, options = {}) {
checkNamePrefix: "checks-node-test",
runtime: "node",
task: "test",
command: "pnpm test",
command: "pnpm test:planner",
shardCount: unitShardCount,
}),
...createShardMatrixEntries({
@@ -1546,7 +1546,7 @@ export function buildCIExecutionManifest(scopeInput = {}, options = {}) {
checkNamePrefix: "checks-windows-node-test",
runtime: "node",
task: "test",
command: "pnpm test",
command: "pnpm test:planner",
shardCount: windowsShardCount,
})
: [];
@@ -1555,7 +1555,7 @@ export function buildCIExecutionManifest(scopeInput = {}, options = {}) {
checkNamePrefix: "macos-node",
runtime: "node",
task: "test",
command: "pnpm test",
command: "pnpm test:planner",
shardCount: macosNodeShardCount,
})
: [];