We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f9e454 commit fbf9c5bCopy full SHA for fbf9c5b
1 file changed
.github/workflows/docs.yml
@@ -28,11 +28,15 @@ jobs:
28
uses: actions/setup-node@v4
29
with:
30
node-version: 22
31
- cache: npm
32
- cache-dependency-path: docs/package-lock.json
+
+ - name: Clean npm cache and dependencies
33
+ run: |
34
+ rm -rf node_modules package-lock.json
35
+ npm cache clean --force
36
+ working-directory: docs
37
38
- name: Install dependencies
- run: npm ci
39
+ run: npm install
40
working-directory: docs
41
42
- name: Extract version from tag
0 commit comments