Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
waldekmastykarz committed Sep 15, 2024
1 parent a580dfc commit df9f151
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
path: |
**/node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.node }}-${{ hashFiles('**/npm-shrinkwrap.json') }}
key: node_modules-${{ matrix.os }}-${{ matrix.node }}-${{ hashFiles('npm-shrinkwrap.json') }}
- name: Restore dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
with:
path: |
**/node_modules
key: node_modules-${{ matrix.os }}-${{ matrix.nodeBuild }}-${{ hashFiles('**/npm-shrinkwrap.json') }}
key: node_modules-${{ matrix.os }}-${{ matrix.nodeBuild }}-${{ hashFiles('npm-shrinkwrap.json') }}
- name: Restore dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
Expand All @@ -98,7 +98,7 @@ jobs:
uses: actions/cache@v4
with:
path: .eslintcache
key: eslintcache-${{ hashFiles('**/npm-shrinkwrap.json', '../.eslintrc.cjs') }}
key: eslintcache-${{ hashFiles('npm-shrinkwrap.json', '.eslintrc.cjs') }}
- name: Test with coverage
# we run coverage only on Node that was used to build
if: matrix.nodeRun == matrix.nodeBuild
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
with:
path: |
**/docs/node_modules
key: docs_node_modules-${{ hashFiles('**/docs/package-lock.json') }}
key: docs_node_modules-${{ hashFiles('./docs/package-lock.json') }}

- name: Restore dependencies
if: steps.cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit df9f151

Please sign in to comment.