Skip to content

Commit

Permalink
feat(ci): try to include all node_modules directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomasan1999 committed Sep 13, 2024
1 parent 74a1371 commit 2da296f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: cache
uses: actions/cache@v4
with:
path: ~/.npm
path: '**/node_modules'
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Restore node modules cache
uses: actions/cache@v4
with:
path: ~/.npm
path: '**/node_modules'
key: ${{ runner.os }}-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node_modules-
Expand Down

0 comments on commit 2da296f

Please sign in to comment.