Skip to content

Commit

Permalink
fix: 루트 의존성 설치 CI 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ezcolin2 committed Nov 16, 2024
1 parent cc66e97 commit b5a320d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,19 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: "23"
# 루트 의존성 캐시 설정
- name: Cache Yarn dependencies for root
id: cache-root-deps
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-root-yarn-${{ hashFiles('yarn.lock') }}

# 루트 의존성 설치
- name: Install root dependencies
if: steps.cache-root-deps.outputs.cache-hit != 'true'
run: yarn install

# 백엔드 의존성 캐시 복원
- name: Restore Yarn dependencies for backend
uses: actions/cache@v3
Expand Down

0 comments on commit b5a320d

Please sign in to comment.