Skip to content

Commit c9c9f46

Browse files
committed
chore: use pnpm
1 parent 800e8a1 commit c9c9f46

File tree

4 files changed

+4756
-6885
lines changed

4 files changed

+4756
-6885
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Deploy Docs
32

43
on:
@@ -15,18 +14,21 @@ jobs:
1514
with:
1615
fetch-depth: 0
1716

17+
- name: Install pnpm
18+
uses: pnpm/action-setup@v4
19+
1820
- name: Setup Node.js
1921
uses: actions/setup-node@v4
2022
with:
2123
node-version: 22
22-
cache: npm
24+
cache: pnpm
2325

2426
- name: Install Deps
25-
run: npm ci
27+
run: pnpm install --frozen-lockfile
2628

2729
- name: Build Docs
2830
run: |-
29-
npm run docs:build
31+
pnpm docs:build
3032
> dist/.nojekyll
3133
3234
- name: Deploy Docs
@@ -35,4 +37,3 @@ jobs:
3537
# This is the branch where the docs are deployed to
3638
branch: gh-pages
3739
folder: dist
38-

0 commit comments

Comments
 (0)