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 800e8a1 commit c9c9f46Copy full SHA for c9c9f46
.github/workflows/deploy-docs.yml
@@ -1,4 +1,3 @@
1
-
2
name: Deploy Docs
3
4
on:
@@ -15,18 +14,21 @@ jobs:
15
14
with:
16
fetch-depth: 0
17
+ - name: Install pnpm
18
+ uses: pnpm/action-setup@v4
19
+
20
- name: Setup Node.js
21
uses: actions/setup-node@v4
22
23
node-version: 22
- cache: npm
24
+ cache: pnpm
25
26
- name: Install Deps
- run: npm ci
27
+ run: pnpm install --frozen-lockfile
28
29
- name: Build Docs
30
run: |-
- npm run docs:build
31
+ pnpm docs:build
32
> dist/.nojekyll
33
34
- name: Deploy Docs
@@ -35,4 +37,3 @@ jobs:
35
37
# This is the branch where the docs are deployed to
36
38
branch: gh-pages
39
folder: dist
0 commit comments