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 79f26ce commit 001d7a0Copy full SHA for 001d7a0
.github/workflows/upload-sarif.yml
@@ -18,6 +18,11 @@ jobs:
18
- name: Run ESLint
19
# eslint exits 1 if it finds anything to report
20
run: node_modules/.bin/eslint index.js -f node_modules/@microsoft/eslint-formatter-sarif/sarif.js -o results.sarif || true
21
+ - name: Expose report
22
+ uses: actions/upload-artifact@v2
23
+ with:
24
+ name: SARIF results
25
+ path: results.sarif
26
# Uploads results.sarif to GitHub repository using the upload-sarif action
27
- uses: github/codeql-action/upload-sarif@v1
28
with:
0 commit comments