Skip to content

Commit

Permalink
ci: attempt to fix cache restore failure
Browse files Browse the repository at this point in the history
  • Loading branch information
marabesi authored Nov 12, 2023
1 parent 790b929 commit b6ed545
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
./node_modules
~/.cache/Cypress
key: ${{ hashFiles('**/package-lock.json') }}
enableCrossOsArchive: true
restore-keys: ${{ hashFiles('**/package-lock.json') }}

# - name: install wine
Expand Down Expand Up @@ -81,7 +80,6 @@ jobs:
id: cache_restore
with:
fail-on-cache-miss: true
enableCrossOsArchive: true
path: |
./node_modules
~/.cache/Cypress
Expand Down Expand Up @@ -160,7 +158,9 @@ jobs:
id: cache_restore
with:
fail-on-cache-miss: true
path: ./node_modules
path: |
./node_modules
~/.cache/Cypress
key: ${{ hashFiles('**/package-lock.json') }}

- name: package
Expand Down

0 comments on commit b6ed545

Please sign in to comment.