364 feature suggest cvs and profiles based on the categories that you put #669
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: linter | |
| on: [pull_request] | |
| jobs: | |
| eslint: | |
| name: runner / eslint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4.1.7 | |
| - uses: reviewdog/action-eslint@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review # Change reporter. | |
| eslint_flags: "." | |
| workdir: "./cv_next" | |
| filter_mode: diff_context |