We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88f439 commit 39b44c6Copy full SHA for 39b44c6
.github/workflows/pull_request.yaml
@@ -57,13 +57,15 @@ jobs:
57
with:
58
node-version: 22
59
- name: Cache npm dependencies
60
+ id: node-modules-cache
61
uses: actions/cache@v4
62
63
path: '**/node_modules'
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
64
+ key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
65
restore-keys: |
- ${{ runner.os }}-node-
66
+ ${{ runner.os }}-modules-
67
- name: Install Dependencies
68
+ if: steps.node-modules-cache.outputs.cache-hit != 'true'
69
run: npm ci
70
71
- name: Download and install vacuum v0.18.1
0 commit comments