Skip to content

Commit 3107040

Browse files
committed
Fully switch to PNPM
1 parent 92b3005 commit 3107040

File tree

2 files changed

+8
-6428
lines changed

2 files changed

+8
-6428
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,22 @@ jobs:
1616
- name: Checkout source
1717
uses: actions/checkout@v4
1818

19+
- name: Install pnpm
20+
uses: pnpm/action-setup@v4
21+
with:
22+
version: 10
23+
1924
- name: Setup Node
2025
uses: actions/setup-node@v4
2126
with:
2227
node-version: 20
28+
cache: "pnpm"
2329

2430
- name: Install dependencies
25-
run: npm ci
31+
run: pnpm install
2632

2733
- name: Build site
28-
run: npm run build
34+
run: pnpm run build
2935

3036
- name: Upload artifacts
3137
uses: actions/upload-pages-artifact@v3

0 commit comments

Comments
 (0)