Skip to content

Commit

Permalink
fix(#35): fix to not found pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
mjh000526 committed Nov 12, 2024
1 parent 592e6b8 commit 3170eba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ name: froxy Continuous Delivery
on:
push:
branches:
- feature-#35-BE-cicd
- release # release 브랜치에 푸시될 때 실행
pull_request:
branches:
- main

jobs:
build_and_deploy:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -26,10 +31,6 @@ jobs:
run: |
echo "${{ secrets.BE_ENV }}" > ./apps/backend/.env
- name: Install pnpm #pnpm설치
run: |
npm install -g pnpm
- name: Install dependencies #라이브러리설치
run: |
pnpm install
Expand Down

0 comments on commit 3170eba

Please sign in to comment.