diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index cd5081c5..2b731759 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -59,17 +59,3 @@ jobs: files: ${{ steps.changed-files.outputs.code_all_changed_files }} run: pnpm exec eslint $files --report-unused-disable-directives --max-warnings 0 --output-file eslint_report.json --format json continue-on-error: true - - - name: Annotate Code Linting Results - if: steps.changed-files.outputs.code_any_changed == 'true' - uses: ataylorme/eslint-annotate-action@v2 - with: - repo-token: '${{ secrets.GITHUB_TOKEN }}' - report-json: 'eslint_report.json' - - - name: Upload ESLint report - if: steps.changed-files.outputs.code_any_changed == 'true' - uses: actions/upload-artifact@v4 - with: - name: eslint_report.json - path: eslint_report.json