Update dependency eslint to ~3.19.0 #1523
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - dependabot/* | |
| - renovate/* | |
| schedule: | |
| - cron: 0 0 * * * | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up system | |
| run: bin/before_install | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: package.json | |
| cache: yarn | |
| registry-url: https://npm.manageiq.org/ | |
| - name: Prepare tests | |
| run: bin/setup | |
| - name: Run tests | |
| run: bin/ci | |
| - name: Run security tests | |
| run: yarn test:security | |
| - name: Report code coverage | |
| if: "${{ github.ref == 'refs/heads/master' }}" | |
| continue-on-error: true | |
| run: scripts/.coverage.sh |