eslint-annotate-action
eslint-annotate-action copied to clipboard
A GitHub action that takes ESLint results from a JSON file and adds them as annotated pull request comments
## Issue We see an issue where there is an error `nil is not integer` resulting in a hanging result / check job. ```shell 2 ESLint error(s) and 0 ESLint...
This looks like a regression of #32 My config is: ``` - name: Generate Lint Report if: "!cancelled()" uses: ataylorme/[email protected] with: report-json: ${{ inputs.workspace-name }}-eslint_report.json repo-token: "${{ inputs.github_token }}" check-name:...
Please update project to Node 20.
Thanks for this useful project! I noticed something today that I think you should be aware of. When `only-pr-files` with a default of `true` was added it broke certain lint...
I'd like to use this action with GitHub Enterprise but I'm encountering errors. I believe this is related to Octokit configuration as it needs to receive different baseUrl to connect...
On GHE 3.5 and experiencing the following error: ``` 2022-09-23T13:58:22.6907309Z ℹ info 1 ESLint error(s) and 1 ESLint warning(s) found 2022-09-23T13:58:22.8592709Z ✖ fatal Bad credentials ``` Other GitHub Actions that...
I'm seeing double annotations in some cases. The example YAML names the job as `node_test` (https://github.com/ataylorme/eslint-annotate-action#usage-example) which is the name on one of the comments, and then we have the...
Using: ```yml on: pull_request: - name: Annotate Code Linting Results uses: ataylorme/eslint-annotate-action@v3 if: ${{ always() && steps.eslint.outcome == 'failure' }} with: report-json: 'standard_report.json' markdown-report-on-step-summary: ${{ true }} ``` ```text Starting...
This Github action is fantastic, and runs perfectly on one of my actions in a turbo repo but receives the following for the other: Step used: ``` - name: Annotate...
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:...