Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
Don't fail build on EsLint.
  • Loading branch information
AlteaDown authored Jan 12, 2021
1 parent b79dce8 commit e7f67c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
pullRequestId: ${{github.event.number}}
token: ${{secrets.GITHUB_TOKEN}}
run: |
yarn eslint -f checkstyle -o eslint_report.xml 'src/**/*' --ext .js --ext .ts --ext .tsx --ignore-pattern '*.css' --ignore-pattern '*.json' --ignore-pattern '*.yml'
yarn eslint -f checkstyle -o eslint_report.xml 'src/**/*' --ext .js --ext .ts --ext .tsx --ignore-pattern '*.css' --ignore-pattern '*.json' --ignore-pattern '*.yml' || true
yarn violation-comments-to-github-command-line -ot $token -ro FLOIP -rn flow-runner -prid $pullRequestId -comment-only-changed-content false -create-comment-with-all-single-file-comments true -create-single-file-comments true -show-debug-info -v "CHECKSTYLE" "." ".*/eslint_report.xml" ESLint
- name: PostEslintToGthub
Expand Down

0 comments on commit e7f67c9

Please sign in to comment.