mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 15:40:44 +00:00
ci: keep installer smoke dependencies installed
This commit is contained in:
5
.github/workflows/install-smoke.yml
vendored
5
.github/workflows/install-smoke.yml
vendored
@@ -333,11 +333,10 @@ jobs:
|
|||||||
push: false
|
push: false
|
||||||
provenance: false
|
provenance: false
|
||||||
|
|
||||||
- name: Setup Node environment for local pack smoke
|
- name: Setup Node environment for installer smoke
|
||||||
if: needs.preflight.outputs.run_bun_global_install_smoke == 'true'
|
|
||||||
uses: ./.github/actions/setup-node-env
|
uses: ./.github/actions/setup-node-env
|
||||||
with:
|
with:
|
||||||
install-bun: "true"
|
install-bun: ${{ needs.preflight.outputs.run_bun_global_install_smoke }}
|
||||||
install-deps: "true"
|
install-deps: "true"
|
||||||
|
|
||||||
- name: Run Bun global install image-provider smoke
|
- name: Run Bun global install image-provider smoke
|
||||||
|
|||||||
@@ -145,7 +145,9 @@ describe("bun global install smoke", () => {
|
|||||||
|
|
||||||
expect(workflow).toContain("workflow_call:");
|
expect(workflow).toContain("workflow_call:");
|
||||||
expect(workflow).toContain("run_bun_global_install_smoke:");
|
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(
|
expect(workflow).toContain(
|
||||||
"if: needs.preflight.outputs.run_bun_global_install_smoke == 'true'",
|
"if: needs.preflight.outputs.run_bun_global_install_smoke == 'true'",
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user