ci: keep installer smoke dependencies installed · openclaw/openclaw@3caaba7
steipete
·
2026-04-24
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -333,11 +333,10 @@ jobs:
|
333 | 333 | push: false |
334 | 334 | provenance: false |
335 | 335 | |
336 | | - - name: Setup Node environment for local pack smoke |
337 | | -if: needs.preflight.outputs.run_bun_global_install_smoke == 'true' |
| 336 | + - name: Setup Node environment for installer smoke |
338 | 337 | uses: ./.github/actions/setup-node-env |
339 | 338 | with: |
340 | | -install-bun: "true" |
| 339 | +install-bun: ${{ needs.preflight.outputs.run_bun_global_install_smoke }} |
341 | 340 | install-deps: "true" |
342 | 341 | |
343 | 342 | - name: Run Bun global install image-provider smoke |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -145,7 +145,9 @@ describe("bun global install smoke", () => {
|
145 | 145 | |
146 | 146 | expect(workflow).toContain("workflow_call:"); |
147 | 147 | expect(workflow).toContain("run_bun_global_install_smoke:"); |
148 | | -expect(workflow).toContain('install-bun: "true"'); |
| 148 | +expect(workflow).toContain( |
| 149 | +"install-bun: ${{ needs.preflight.outputs.run_bun_global_install_smoke }}", |
| 150 | +); |
149 | 151 | expect(workflow).toContain( |
150 | 152 | "if: needs.preflight.outputs.run_bun_global_install_smoke == 'true'", |
151 | 153 | ); |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。