From f5f8e7a5cec7ea51415c23e2ed7590d78f9ac8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?= <99115509+hoheesu@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:31:11 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Fix:=20=EB=B0=B0=ED=8F=AC=20=EC=97=90?= =?UTF-8?q?=EB=9F=AC=20(=20node=20=EB=B2=84=EC=A0=84=20=EB=B3=80=EA=B2=BD?= =?UTF-8?q?=20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nvmrc | 1 + yarn.lock | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..43bff1f --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +20.9.0 \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 1680c05..2286fc0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1171,11 +1171,6 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -husky@^9.1.7: - version "9.1.7" - resolved "https://registry.yarnpkg.com/husky/-/husky-9.1.7.tgz#d46a38035d101b46a70456a850ff4201344c0b2d" - integrity sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA== - ignore@^5.2.0, ignore@^5.3.1: version "5.3.2" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5" From f279618b17949a56565f5461beec065562acbb73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EC=A4=80=EC=88=98?= <99115509+hoheesu@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:38:03 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Fix:=20githubAction=20nodemodule=20?= =?UTF-8?q?=EC=BA=90=EC=8B=B1=20=EC=A7=80=EC=9A=B0=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 81ce2c1..4be8ced 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,17 +14,6 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - # Node.js 캐시 설정 - - name: Cache Node.js modules - uses: actions/cache@v3 - with: - path: | - ~/.npm - node_modules - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - # 의존성 설치 - name: Install dependencies run: npm install