Skip to content

Commit a3d9839

Browse files
committed
fix: windows yarn jobs
1 parent 244337d commit a3d9839

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/smoke.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ jobs:
196196
- name: Clear Yarn Cache
197197
run: yarn cache clean
198198
- run: |
199-
for ((i=1; i<=3; i++)); do
199+
for ($i = 1; $i -le 3; $i++) {
200200
bash ./__tests__/smoke/run-smoke.sh "yarn add ./redocly-cli.tgz" "yarn" && break || sleep 5
201-
done
201+
}
202202
203203
run-smoke--npm--node-20--windows:
204204
needs: prepare-smoke
@@ -229,9 +229,9 @@ jobs:
229229
- name: Clear Yarn Cache
230230
run: yarn cache clean
231231
- run: |
232-
for ((i=1; i<=3; i++)); do
232+
for ($i = 1; $i -le 3; $i++) {
233233
bash ./__tests__/smoke/run-smoke.sh "yarn add ./redocly-cli.tgz" "yarn" && break || sleep 5
234-
done
234+
}
235235
236236
run-smoke--docker-image:
237237
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)