Skip to content

Commit 8a5682f

Browse files
committed
fix: pnpm으로 변경
1 parent 358b1d2 commit 8a5682f

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,23 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v4
1919

20-
- name: Setup Node
20+
- name: Setup pnpm
21+
uses: pnpm/action-setup@v4
22+
with:
23+
version: 9
24+
25+
- name: Setup Node.js
2126
uses: actions/setup-node@v4
2227
with:
2328
node-version: 20
29+
cache: "pnpm"
2430

2531
- name: Install dependencies
26-
run: npm ci
32+
run: pnpm install --frozen-lockfile
2733

28-
- name: Build
29-
run: npm run docs:build
34+
- name: Build VitePress site
35+
run: pnpm run docs:build
36+
working-directory: docs
3037

3138
- name: Setup Pages
3239
uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)