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 f5b65a8 commit a9540abCopy full SHA for a9540ab
.github/workflows/docs.yml
@@ -39,12 +39,21 @@ jobs:
39
- name: Setup Yarn version
40
run: corepack prepare yarn@3.6.1 --activate
41
42
+ - name: Clean root Yarn install state
43
+ run: rm -f .yarn/install-state.gz
44
+
45
- name: Clean Yarn cache
46
run: yarn cache clean --all
47
48
- name: Install dependencies
49
run: yarn install --immutable
50
51
+ - name: Clean docs workspace before install
52
+ working-directory: docs
53
+ run: |
54
+ rm -rf node_modules yarn.lock .pnp.* .yarn/cache .yarn/build-state.yml
55
+ echo "Docs workspace cleaned."
56
57
- name: Install docs dependencies
58
working-directory: docs
59
0 commit comments