eslint-annotate-action
eslint-annotate-action copied to clipboard
Doesn't report on warnings
Hello! I've run into the following problem: it doesn't report eslint warnings My config:
- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@v3
with:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
report-json: reports/eslint_report.json
only-pr-files: true
fail-on-warning: true
fail-on-error: true
markdown-report-on-step-summary: true
As a result, I receive the following message:
But I don't see annotation about it in the PR. Could you fix it? This works well with errors, but not with warnings.