Skip to content

Commit 8156051

Browse files
author
jungtaeinn
committed
fix: Update pnpm version and install command in GitHub Actions workflow
- Update pnpm version from 8 to 10 to match local environment - Update pnpm/action-setup from v2 to v4 - Use --no-frozen-lockfile flag to resolve CI installation issues
1 parent 180b435 commit 8156051

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
uses: actions/checkout@v4
2828

2929
- name: Setup pnpm
30-
uses: pnpm/action-setup@v2
30+
uses: pnpm/action-setup@v4
3131
with:
32-
version: 8
32+
version: 10
3333

3434
- name: Setup Node.js
3535
uses: actions/setup-node@v4
@@ -38,12 +38,7 @@ jobs:
3838
cache: 'pnpm'
3939

4040
- name: Install dependencies
41-
run: |
42-
if [ -f pnpm-lock.yaml ]; then
43-
pnpm install --frozen-lockfile
44-
else
45-
pnpm install
46-
fi
41+
run: pnpm install --no-frozen-lockfile
4742

4843
- name: Build
4944
run: pnpm build

0 commit comments

Comments
 (0)