-
You're caching 'node_modules' but are not caching this path: /home/runner/.cache/Cypress이슈 기록 2021. 4. 20. 21:27
deploy.yml 파일에서
- name: Cache node_modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ runner.OS }}-
를 아래 코드로 변경하여 해결
- name: Cache node_modules
uses: actions/cache@v2
with:
path: |
node_modules
~/.cache/Cypress
build
key: ${{ runner.OS }}-node_modules-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-node_modules-build-${{ runner.OS }}-
'이슈 기록' 카테고리의 다른 글
vue bootstrap b-badge b-toast 렌더링 문제 (0) 2021.06.01 vue-bootstrap b-form-group label style (0) 2021.06.01 vue3 git pages 새로고침 시 404 에러 (0) 2021.04.19 html inline-block 공백처리 (0) 2020.10.30 vue-html-to-paper 사용기 (0) 2020.10.29