We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 994858d commit 53f916fCopy full SHA for 53f916f
.github/workflows/pr-checks.yml
@@ -98,19 +98,22 @@ jobs:
98
package-lock.json
99
pr-checks/package-lock.json
100
101
+ - name: Install dependencies
102
+ run: npm ci
103
+
104
- name: Verify PR checks up to date
105
if: always()
106
run: .github/workflows/script/verify-pr-checks.sh
107
108
- name: Run pr-checks tests
109
110
working-directory: pr-checks
- run: npm ci && npx tsx --test
111
+ run: npx tsx --test
112
113
- name: Lint
114
115
- run: npm ci && npm run lint
116
+ run: npm run lint
117
118
check-node-version:
119
if: github.triggering_actor != 'dependabot[bot]'
0 commit comments