We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d34e4e commit 31ee7f5Copy full SHA for 31ee7f5
.github/workflows/pr-checks.yml
@@ -21,9 +21,12 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v5
23
24
+ - name: Install dependencies
25
+ run: npm install
26
+
27
- name: Lint
28
id: lint
- run: npm run-script lint-ci
29
+ run: npm run lint-ci
30
31
- name: Upload sarif
32
uses: github/codeql-action/upload-sarif@v3
@@ -74,6 +77,7 @@ jobs:
74
77
# Run any commands referenced in package.json using Bash, otherwise
75
78
# we won't be able to find them on Windows.
76
79
npm config set script-shell bash
80
+ npm install
81
npm test
82
83
check-node-version:
0 commit comments