Skip to content

Commit d94f4eb

Browse files
committed
chore: windows smoke test
1 parent f0f3d2a commit d94f4eb

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/smoke.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,12 @@ jobs:
201201
- name: Install Package
202202
run: |
203203
Start-Sleep -Seconds 15
204-
yarn add ./redocly-cli.tgz --no-lockfile --network-timeout 100000
204+
cd $env:GITHUB_WORKSPACE
205+
yarn add file:$env:GITHUB_WORKSPACE/redocly-cli.tgz --no-lockfile --network-timeout 100000
205206
- name: Run Smoke Tests
206-
run: bash ./__tests__/smoke/run-smoke.sh "yarn" "yarn"
207+
run: |
208+
cd $env:GITHUB_WORKSPACE/__tests__/smoke
209+
bash ./run-smoke.sh "yarn" "yarn"
207210
208211
run-smoke--npm--node-20--windows:
209212
needs: prepare-smoke
@@ -239,9 +242,12 @@ jobs:
239242
- name: Install Package
240243
run: |
241244
Start-Sleep -Seconds 15
242-
yarn add ./redocly-cli.tgz --no-lockfile --network-timeout 100000
245+
cd $env:GITHUB_WORKSPACE
246+
yarn add file:$env:GITHUB_WORKSPACE/redocly-cli.tgz --no-lockfile --network-timeout 100000
243247
- name: Run Smoke Tests
244-
run: bash ./__tests__/smoke/run-smoke.sh "yarn" "yarn"
248+
run: |
249+
cd $env:GITHUB_WORKSPACE/__tests__/smoke
250+
bash ./run-smoke.sh "yarn" "yarn"
245251
246252
run-smoke--docker-image:
247253
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)