fix(check): pass lock env to changed lint lanes

This commit is contained in:
Peter Steinberger
2026-04-25 20:06:48 +01:00
parent 1e7ae07772
commit e6ab61762a

View File

@@ -98,6 +98,10 @@ describe("scripts/changed-lanes", () => {
PATH: "/usr/bin",
OPENCLAW_TSGO_SPARSE_SKIP: "1",
});
expect(plan.commands.find((command) => command.args[0] === "lint:core")?.env).toMatchObject({
PATH: "/usr/bin",
OPENCLAW_OXLINT_SKIP_LOCK: "1",
});
});
it("reenables local-check policy for changed typecheck commands", () => {