eslint-annotate-action icon indicating copy to clipboard operation
eslint-annotate-action copied to clipboard

Doesn't report on warnings

Open vldslv-a opened this issue 1 year ago • 3 comments

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: image But I don't see annotation about it in the PR. Could you fix it? This works well with errors, but not with warnings.

vldslv-a avatar May 16 '24 11:05 vldslv-a