We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 244337d commit a3d9839Copy full SHA for a3d9839
.github/workflows/smoke.yaml
@@ -196,9 +196,9 @@ jobs:
196
- name: Clear Yarn Cache
197
run: yarn cache clean
198
- run: |
199
- for ((i=1; i<=3; i++)); do
+ for ($i = 1; $i -le 3; $i++) {
200
bash ./__tests__/smoke/run-smoke.sh "yarn add ./redocly-cli.tgz" "yarn" && break || sleep 5
201
- done
+ }
202
203
run-smoke--npm--node-20--windows:
204
needs: prepare-smoke
@@ -229,9 +229,9 @@ jobs:
229
230
231
232
233
234
235
236
run-smoke--docker-image:
237
runs-on: ubuntu-latest
0 commit comments