ci: remove bun workflow

This commit is contained in:
Peter Steinberger
2026-04-01 21:58:46 +09:00
parent 131f6dac37
commit fc745db76d
5 changed files with 2 additions and 138 deletions

View File

@@ -466,16 +466,6 @@ describe("scripts/test-parallel lane planning", () => {
expect(outputs).not.toContain("run_checks=");
});
it("writes bun outputs in ci-bun mode", () => {
const outputs = runManifestOutputWriter("ci-bun", {
OPENCLAW_CI_DOCS_ONLY: "false",
OPENCLAW_CI_RUN_NODE: "true",
});
expect(outputs).toContain("run_bun_checks=true");
expect(outputs).toContain("bun_checks_matrix=");
expect(outputs).not.toContain("run_install_smoke=");
});
it("passes through vitest --mode values that are not wrapper runtime overrides", () => {
const output = runPlannerPlan(
["--plan", "--mode", "development", "src/infra/outbound/deliver.test.ts"],