feat(FN-4105): drop bun install from test-shards CI jobs

Removes unused `bun install` steps from two CI workflow files (`ci.yml` and `pr-checks.yml`), cleaning up the test-shards job configuration.

Fusion-Task-Id: FN-4105
This commit is contained in:
Fusion
2026-05-12 16:16:22 -07:00
committed by gsxdsm
parent 12df59871b
commit 6bc3fa03c2

View File

@@ -374,7 +374,11 @@ describe("aiMergeTask overlap-aware fallback integration", () => {
git(dir, "git checkout main");
commitFile(dir, "store.ts", "export const mode = 'main fallback';\n", "feat: main follow-up");
commitSeries(dir, "filler", 31);
// 40 filler commits pushes the conflicting main edit well beyond the
// default 30-commit lookback window, avoiding a tight boundary condition
// that caused intermittent failures when initRepo/setup commits shifted
// the effective position of the "main follow-up" commit.
commitSeries(dir, "filler", 40);
const { result } = await runOverlapMerge(dir, "FN-051");