Skip to content

Commit

Permalink
fix: github actions 환경에서 pnpm 패키지 매니져 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
toothlessdev committed Oct 26, 2024
1 parent 12cef57 commit 3a0d039
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup pnpm package manager
run: npm install -g pnpm

- name: Install Dependencies
run: npm ci
run: pnpm install

- name: Build Production
run: npm run build
run: pnpm run build

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down

0 comments on commit 3a0d039

Please sign in to comment.