File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments