From 43868489e0ea94dea1d3c67120c39c607a84e2b9 Mon Sep 17 00:00:00 2001 From: Hyang-Dan Date: Sun, 30 Nov 2025 19:03:32 +0900 Subject: [PATCH] =?UTF-8?q?issue=20#=20-=20gitea-ci=20=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=20node=5Fmodules=20=EC=BA=90=EC=8B=B1=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/gitea-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/gitea-ci.yml b/.gitea/workflows/gitea-ci.yml index e33f3ed..657a047 100644 --- a/.gitea/workflows/gitea-ci.yml +++ b/.gitea/workflows/gitea-ci.yml @@ -37,17 +37,17 @@ jobs: fi echo "yarn version: $(yarn -v)" - - name: Restore node_modules - id: cache-node + - name: Restore Yarn cache uses: actions/cache@v4 with: - path: node_modules - key: ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn-v1- + path: | + .yarn/cache + .yarn/unplugged + .yarn/install-state.gz + .pnp.cjs + key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock','package.json') }} - name: Install Dependencies with yarn - if: steps.cache-node.outputs.cache-hit != 'true' run: | yarn install --immutable ls .