Skip to content

Commit

Permalink
Fix: 빌드오류 수정(4)
Browse files Browse the repository at this point in the history
  • Loading branch information
gibeom0218 committed Feb 6, 2025
1 parent 1000044 commit 3310583
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,19 @@ jobs:
- name: Corepack 최신 버전 설치
run: npm install -g corepack@latest

- name: Corepack 활성화 및 PNPM 설치
- name: 기존 pnpm 제거 (필요한 경우만)
run: |
if command -v pnpm &> /dev/null; then
echo "pnpm detected, removing..."
npm uninstall -g pnpm
fi
- name: Corepack 활성화 및 최신 pnpm 설치
run: |
corepack enable
corepack prepare pnpm@latest-10 --activate
npm install -g pnpm@latest
npm install -g pnpm@latest || echo "pnpm already installed"

- name: 캐시 종속성
id: cache
Expand Down

0 comments on commit 3310583

Please sign in to comment.