Feature/dqa rf36 bloqueo #359
Workflow file for this run
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: ESLint with reviewdog | |
| on: | |
| pull_request: | |
| jobs: | |
| eslint: | |
| name: Run ESLint and comment on PR | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Install dependencies | |
| run: cd harvester-app && npm install | |
| - name: Run ESLint (Comentario en checks) | |
| uses: reviewdog/action-eslint@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-check | |
| workdir: harvester-app | |
| eslint_flags: './src' | |
| fail_on_error: true | |
| filter_mode: nofilter | |
| if: always() |