Compare commits

..

1 commit

Author SHA1 Message Date
vince
d16ddc4561 fix(web): skip install scripts in container deps stage 2026-06-20 13:09:14 +02:00

View file

@ -195,7 +195,7 @@ describe("workspace boundaries", () => {
const sourceCopy = "COPY --from=pruner /repo/out/full/ ./";
const tsconfigCopy =
"COPY --from=pruner /repo/tsconfig.base.json /repo/tsconfig.json ./";
const installCommand = "RUN bun install --frozen-lockfile --ignore-scripts";
const installCommand = "RUN bun install --frozen-lockfile";
expect(containerfile).toContain("AS pruner");
expect(containerfile).toContain(pruneCommand);