issue #
Some checks failed
Test CI / build (push) Failing after 23s

- gitea-ci 파일 node_modules 캐싱 수정
This commit is contained in:
2025-11-30 18:58:27 +09:00
parent ab99d23de3
commit be65742caa
2 changed files with 2 additions and 2 deletions

View File

@@ -35,13 +35,14 @@ jobs:
echo "Error: Yarn.js not found"
exit 1
fi
echo "yarn version: $(yarn -v)"
- name: Restore node_modules
id: cache-node
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-v1-