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 76db312 commit 93d2d3dCopy full SHA for 93d2d3d
.github/workflows/eslint.yml
@@ -45,17 +45,20 @@ jobs:
45
46
- name: Install ESLint
47
run: |
48
- npm install eslint@8.56.0
49
- npm install @microsoft/eslint-formatter-sarif@3.0.0
50
-
+ npm install --include=dev eslint@8.57.0
+ npm install --include=dev @microsoft/eslint-formatter-sarif@3.0.0
+ - name: Test ESLint
51
+ run: |
52
+ npx --yes eslint --env-info
53
- name: Run ESLint
- run: npx eslint .
54
+ run: >
55
+ npx eslint .
56
--config .eslintrc
57
+ --max-warnings=0
58
--ext .js,.jsx,.ts,.tsx
59
--format @microsoft/eslint-formatter-sarif
60
--output-file eslint-results.sarif
61
continue-on-error: true
62
- name: Upload analysis results to GitHub
63
uses: github/codeql-action/upload-sarif@v3
64
with:
0 commit comments