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 d9d7927 commit 308a2c3Copy full SHA for 308a2c3
.github/workflows/deploy.yml
@@ -13,17 +13,20 @@ jobs:
13
with:
14
fetch-depth: 0
15
16
+ - name: Setup pnpm
17
+ uses: pnpm/action-setup@v4
18
+
19
- name: Setup Node.js
20
uses: actions/setup-node@v4
21
22
node-version: 22
- cache: npm
23
+ cache: pnpm
24
25
- name: Install dependencies
- run: npm ci
26
+ run: pnpm install --frozen-lockfile
27
28
- name: Build with VitePress
- run: npm run docs:build
29
+ run: pnpm run docs:build
30
31
- name: Generate CNAME
32
run: echo "doocs.org" > docs/.vitepress/dist/CNAME
0 commit comments