Skip to content

Commit 74c7a2d

Browse files
committed
fix: pnpm install 에러 수정
1 parent f7129b4 commit 74c7a2d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
- name: Checkout source code
1414
uses: actions/checkout@v3
1515

16+
- name: Install pnpm
17+
run: |
18+
npm install -g pnpm
19+
1620
- name: Get pnpm store path
1721
id: pnpm-cache-path
1822
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_ENV
@@ -31,7 +35,7 @@ jobs:
3135
if: steps.cache.outputs.cache-hit != 'true'
3236
run: |
3337
pnpm install --frozen-lockfile
34-
pnpm store prune
38+
pnpm store prune
3539
3640
- name: Build
3741
run: pnpm run build

0 commit comments

Comments
 (0)