Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/smoke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Clear caches
run: |
yarn cache clean
npm cache clean --force
- name: Run Smoke Tests
run: |
Start-Sleep -Seconds 20 # workaround for yarn cache issue
Expand Down Expand Up @@ -334,6 +338,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Clear caches
run: |
yarn cache clean
npm cache clean --force
- name: Run Smoke Tests
run: |
Start-Sleep -Seconds 20 # workaround for yarn cache issue
Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"@redocly/openapi-core": "2.14.2",
"@redocly/respect-core": "2.14.2",
"abort-controller": "^3.0.0",
"ajv-formats": "^3.0.1",
Copy link
Collaborator Author

@tatomyr tatomyr Dec 31, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For some reason yarn sometimes cannot resolve transitive dependencies on Win. Added it here explicitly (should change nothing as it imports openapi-core which has ajv-formats as a dependency itself).

"chokidar": "^3.5.1",
"colorette": "^1.2.0",
"cookie": "^0.7.2",
Expand Down
1 change: 1 addition & 0 deletions tests/performance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"cli-2.12.6": "npm:@redocly/[email protected]",
"cli-2.13.0": "npm:@redocly/[email protected]",
"cli-2.14.1": "npm:@redocly/[email protected]",
"cli-2.14.2": "npm:@redocly/[email protected]",
"cli-latest": "npm:@redocly/cli@latest",
"cli-next": "file:../../redocly-cli.tgz"
},
Expand Down
Loading