We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 358b1d2 commit 8a5682fCopy full SHA for 8a5682f
1 file changed
.github/workflows/deploy.yml
@@ -17,16 +17,23 @@ jobs:
17
- name: Checkout
18
uses: actions/checkout@v4
19
20
- - name: Setup Node
+ - name: Setup pnpm
21
+ uses: pnpm/action-setup@v4
22
+ with:
23
+ version: 9
24
+
25
+ - name: Setup Node.js
26
uses: actions/setup-node@v4
27
with:
28
node-version: 20
29
+ cache: "pnpm"
30
31
- name: Install dependencies
- run: npm ci
32
+ run: pnpm install --frozen-lockfile
33
- - name: Build
- run: npm run docs:build
34
+ - name: Build VitePress site
35
+ run: pnpm run docs:build
36
+ working-directory: docs
37
38
- name: Setup Pages
39
uses: actions/configure-pages@v5
0 commit comments