Skip to content
This repository was archived by the owner on May 4, 2025. It is now read-only.

Commit 135cc32

Browse files
committed
Replaced npm with pnpm in workflow
1 parent f7601ad commit 135cc32

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/production-site.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,12 @@ jobs:
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v4
33-
- name: Set up Node
34-
uses: actions/setup-node@v4
35-
with:
36-
node-version: 20
37-
cache: 'npm'
33+
- name: Setup pnpm
34+
uses: pnpm/action-setup@v4
3835
- name: Install dependencies
39-
run: npm ci
36+
run: pnpm i
4037
- name: Build
41-
run: npm run build
38+
run: pnpm run build
4239
- name: Setup Pages
4340
uses: actions/configure-pages@v4
4441
- name: Upload artifact

0 commit comments

Comments
 (0)