Skip to content

Commit

Permalink
➕Add cypress folder to cache
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPoblete committed Sep 10, 2024
1 parent 4fe8327 commit 6540f59
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- uses: actions/[email protected]
- uses: actions/cache@v3
with:
path: '**/node_modules'
path: |
'**/node_modules'
'/home/runner/.cache/Cypress'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -48,7 +50,9 @@ jobs:
- uses: actions/[email protected]
- uses: actions/cache@v3
with:
path: '**/node_modules'
path: |
'**/node_modules'
'/home/runner/.cache/Cypress'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -67,7 +71,9 @@ jobs:
- uses: actions/[email protected]
- uses: actions/cache@v3
with:
path: '**/node_modules'
path: |
'**/node_modules'
'/home/runner/.cache/Cypress'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit 6540f59

Please sign in to comment.