perf(ci): start long node shards first (#106522)

This commit is contained in:
Peter Steinberger
2026-07-13 09:56:30 -07:00
committed by GitHub
parent 2ec0299f9f
commit 8814e75cd6
3 changed files with 21 additions and 1 deletions

View File

@@ -145,6 +145,10 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => {
).toBe(true);
expect(bundled.every((shard) => shard.runner?.startsWith("blacksmith-"))).toBe(true);
expect(bundled).toEqual(createNodeTestShardBundles({ includeReleaseOnlyPluginShards: false }));
expect(bundled.slice(0, 2).map((shard) => shard.shardName)).toEqual([
"core-tooling",
"auto-reply-reply-commands",
]);
expect(bundled.find((shard) => shard.shardName === "core-unit-fast")?.runner).toBe(
DEFAULT_NODE_TEST_RUNNER,
);