Skip to content

Commit

Permalink
fix: ci 캐시 누락시 의존성 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
summersummerwhy committed Jan 21, 2025
1 parent d091935 commit cba95e5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ jobs:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}

# 캐시 복원 후 의존성 설치 누락시 다시 설치
- name: Install backend dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: yarn install

# 환경변수 build에 필요한 .env 생성
- name: Set up .env file
run: |
Expand Down

0 comments on commit cba95e5

Please sign in to comment.