ci: keep installer smoke dependencies installed

This commit is contained in:
Peter Steinberger
2026-04-24 01:29:55 +01:00
parent d1ea58fdbf
commit 3caaba79bc
2 changed files with 5 additions and 4 deletions

View File

@@ -333,11 +333,10 @@ jobs:
push: false
provenance: false
- name: Setup Node environment for local pack smoke
if: needs.preflight.outputs.run_bun_global_install_smoke == 'true'
- name: Setup Node environment for installer smoke
uses: ./.github/actions/setup-node-env
with:
install-bun: "true"
install-bun: ${{ needs.preflight.outputs.run_bun_global_install_smoke }}
install-deps: "true"
- name: Run Bun global install image-provider smoke

View File

@@ -145,7 +145,9 @@ describe("bun global install smoke", () => {
expect(workflow).toContain("workflow_call:");
expect(workflow).toContain("run_bun_global_install_smoke:");
expect(workflow).toContain('install-bun: "true"');
expect(workflow).toContain(
"install-bun: ${{ needs.preflight.outputs.run_bun_global_install_smoke }}",
);
expect(workflow).toContain(
"if: needs.preflight.outputs.run_bun_global_install_smoke == 'true'",
);