From 263ac038752635f8ce3e2bde1003f60a9d6a5204 Mon Sep 17 00:00:00 2001 From: summersummerwhy Date: Tue, 21 Jan 2025 17:56:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=BA=90=EC=8B=9C=20=EB=B3=B5=EC=9B=90?= =?UTF-8?q?=20=EC=8B=A4=ED=8C=A8=ED=96=88=EC=9D=84=20=EA=B2=BD=EC=9A=B0?= =?UTF-8?q?=EC=97=90=EB=A7=8C=20yarn=20install=20=EC=8B=A4=ED=96=89?= =?UTF-8?q?=EC=8B=9C=ED=82=A4=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index bf1da6c4..8dac73ba 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -106,6 +106,7 @@ jobs: # 의존성 캐시 복원 - name: Restore Yarn dependencies + id: cache-deps uses: actions/cache@v3 with: path: node_modules @@ -113,6 +114,7 @@ jobs: # 의존성 설치 - name: Install dependencies + if: steps.cache-deps.outputs.cache-hit != 'true' run: yarn install # 테스트 실행