Merge pull request #541 from pikasTech/fix/v02-ci-bun-wrapper-20260528

fix: run v02 CI Bun checks through wrapper
This commit is contained in:
Lyon
2026-05-29 03:06:48 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ NODE`,
{
name: "codex-api-forwarder-check",
commands: [
"/root/.bun/bin/bun test cmd/hwlab-codex-api-responses-forwarder/main.test.ts"
"node scripts/run-bun.mjs test cmd/hwlab-codex-api-responses-forwarder/main.test.ts"
]
}
]);
+1 -1
View File
@@ -21,7 +21,7 @@ test("v02 render follows TypeScript runtime checks and does not self-patch boots
assert.equal(render.status, 0, render.stderr || render.stdout);
const pipeline = await readFile(path.join(outDir, "tekton-v02", "pipeline.yaml"), "utf8");
assert.match(pipeline, /bun test cmd\/hwlab-codex-api-responses-forwarder\/main\.test\.ts/u);
assert.match(pipeline, /node scripts\/run-bun\.mjs test cmd\/hwlab-codex-api-responses-forwarder\/main\.test\.ts/u);
assert.doesNotMatch(pipeline, /cmd\/hwlab-codex-api-responses-forwarder\/main\.mjs/u);
const reconciler = await readFile(path.join(outDir, "tekton-v02", "control-plane-reconciler.yaml"), "utf8");