From b5a320d1dc790adf9dc1094a7308d023f09ea7e1 Mon Sep 17 00:00:00 2001 From: ez <105545215+ezcolin2@users.noreply.github.com> Date: Sat, 16 Nov 2024 19:31:53 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A3=A8=ED=8A=B8=20=EC=9D=98=EC=A1=B4?= =?UTF-8?q?=EC=84=B1=20=EC=84=A4=EC=B9=98=20CI=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-pipeline.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 5feecf28..d6b4a64f 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -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