Skip to content

Commit 4a01ec7

Browse files
authored
Merge pull request #2474 from github/aeisenberg/always-upload-eslint-sarif
Always upload eslint.sarif
2 parents 762dbae + 0d0f998 commit 4a01ec7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pr-checks.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ jobs:
2424
uses: actions/checkout@v4
2525

2626
- name: Lint
27+
id: lint
2728
run: npm run-script lint-ci
2829

2930
- name: Upload sarif
3031
uses: github/codeql-action/upload-sarif@v3
3132
# Only upload SARIF for the latest version of Node.js
32-
if: matrix.node-types-version == 'current'
33+
if: "always() && matrix.node-types-version == 'current'"
3334
with:
3435
sarif_file: eslint.sarif
3536
category: eslint

0 commit comments

Comments
 (0)