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 08ec8a3 commit 9f31a34Copy full SHA for 9f31a34
.github/workflows/docs.yaml
@@ -147,12 +147,12 @@ jobs:
147
uses: actions/setup-node@v4
148
with:
149
node-version: 22
150
- cache: "yarn"
151
- cache-dependency-path: ./site/yarn.lock
+ cache: "npm"
+ cache-dependency-path: ./site/package-lock.json
152
153
- name: 📦 Install dependencies
154
working-directory: site
155
- run: yarn install
+ run: npm ci
156
157
- name: 👁️ Unpack visualizer
158
uses: actions/download-artifact@v4
@@ -163,7 +163,7 @@ jobs:
163
- name: 🏗️ Build Docusaurus site
164
165
run: |
166
- yarn build
+ npm run build
167
168
- name: Verify Docusaurus build
169
0 commit comments