diff --git a/.github/workflows/smoke.yaml b/.github/workflows/smoke.yaml index 36df6afab0..047b1fc0e7 100644 --- a/.github/workflows/smoke.yaml +++ b/.github/workflows/smoke.yaml @@ -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 @@ -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 diff --git a/package-lock.json b/package-lock.json index 30d046c633..1b819a0ac4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13179,6 +13179,7 @@ "@redocly/openapi-core": "2.14.2", "@redocly/respect-core": "2.14.2", "abort-controller": "^3.0.0", + "ajv-formats": "^3.0.1", "chokidar": "^3.5.1", "colorette": "^1.2.0", "cookie": "^0.7.2", diff --git a/packages/cli/package.json b/packages/cli/package.json index 1cd0fc4612..c7cbfe26a6 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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", "chokidar": "^3.5.1", "colorette": "^1.2.0", "cookie": "^0.7.2", diff --git a/tests/performance/package.json b/tests/performance/package.json index 2feab9068d..6cbd47d1a1 100644 --- a/tests/performance/package.json +++ b/tests/performance/package.json @@ -20,6 +20,7 @@ "cli-2.12.6": "npm:@redocly/cli@2.12.6", "cli-2.13.0": "npm:@redocly/cli@2.13.0", "cli-2.14.1": "npm:@redocly/cli@2.14.1", + "cli-2.14.2": "npm:@redocly/cli@2.14.2", "cli-latest": "npm:@redocly/cli@latest", "cli-next": "file:../../redocly-cli.tgz" },