Skip to content

Commit

Permalink
Merge pull request #6 from geeknik/geeknik-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
geeknik committed Jul 19, 2023
2 parents 0723746 + 17b5464 commit 519dfc0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/eslint.yml
Expand Up @@ -39,7 +39,11 @@ jobs:
--config .eslintrc.js
--ext .js,.jsx,.ts,.tsx
--format @microsoft/eslint-formatter-sarif
--output-file ${{ github.workspace }}/eslint-results.sarif
--output-file ${{ github.workspace }}/eslint-results.sarif || true
if [ ! -f ${{ github.workspace }}/eslint-results.sarif ];
then
echo '[]' > ${{ github.workspace }}/eslint-results.sarif
fi
continue-on-error: true

- name: Upload analysis results to GitHub
Expand Down

0 comments on commit 519dfc0

Please sign in to comment.