We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pr-checks.yml
1 parent 225ed6c commit 1621f40Copy full SHA for 1621f40
.github/workflows/pr-checks.yml
@@ -41,6 +41,9 @@ jobs:
41
with:
42
node-version: ${{ matrix.node-version }}
43
cache: 'npm'
44
+ cache-dependency-path: |
45
+ package-lock.json
46
+ pr-checks/package-lock.json
47
48
- name: Install dependencies
49
run: |
@@ -91,6 +94,9 @@ jobs:
91
94
92
95
node-version: 24
93
96
97
98
99
100
101
- name: Verify PR checks up to date
102
if: always()
@@ -104,7 +110,7 @@ jobs:
104
110
- name: Lint
105
111
106
112
working-directory: pr-checks
107
- run: npm run lint
113
+ run: npm ci && npm run lint
108
114
109
115
check-node-version:
116
if: github.triggering_actor != 'dependabot[bot]'
0 commit comments