Skip to content

Commit 3b5f524

Browse files
authored
chore: fix flaky smokes (#2486)
1 parent 367355a commit 3b5f524

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

.github/workflows/smoke.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,10 @@ jobs:
251251
- uses: actions/setup-node@v3
252252
with:
253253
node-version: 22
254+
- name: Clear caches
255+
run: |
256+
yarn cache clean
257+
npm cache clean --force
254258
- name: Run Smoke Tests
255259
run: |
256260
Start-Sleep -Seconds 20 # workaround for yarn cache issue
@@ -334,6 +338,10 @@ jobs:
334338
- uses: actions/setup-node@v3
335339
with:
336340
node-version: 20
341+
- name: Clear caches
342+
run: |
343+
yarn cache clean
344+
npm cache clean --force
337345
- name: Run Smoke Tests
338346
run: |
339347
Start-Sleep -Seconds 20 # workaround for yarn cache issue

package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"@redocly/openapi-core": "2.14.2",
4646
"@redocly/respect-core": "2.14.2",
4747
"abort-controller": "^3.0.0",
48+
"ajv-formats": "^3.0.1",
4849
"chokidar": "^3.5.1",
4950
"colorette": "^1.2.0",
5051
"cookie": "^0.7.2",

tests/performance/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"cli-2.12.6": "npm:@redocly/[email protected]",
2121
"cli-2.13.0": "npm:@redocly/[email protected]",
2222
"cli-2.14.1": "npm:@redocly/[email protected]",
23+
"cli-2.14.2": "npm:@redocly/[email protected]",
2324
"cli-latest": "npm:@redocly/cli@latest",
2425
"cli-next": "file:../../redocly-cli.tgz"
2526
},

0 commit comments

Comments
 (0)