Release v17.7.0 #125
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: JavaScript Linting | |
| on: | |
| push: | |
| branches-ignore: | |
| - "dependabot/**" | |
| paths: | |
| - "package*.json" | |
| - "Gruntfile.coffee" | |
| - "eslint.config.mjs" | |
| - "**/*.js" | |
| - "**/*.mjs" | |
| - ".github/workflows/lint-js.yml" | |
| pull_request: | |
| paths: | |
| - "package*.json" | |
| - "Gruntfile.coffee" | |
| - "eslint.config.mjs" | |
| - "**/*.js" | |
| - "**/*.mjs" | |
| - ".github/workflows/lint-js.yml" | |
| jobs: | |
| lint-js: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v5 | |
| # setup-node task is used without a particular version in order to load | |
| # the ESLint problem matchers | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| cache: npm | |
| - name: Install Grunt | |
| run: npm i -g grunt-cli --force | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: ESLint | |
| run: grunt eslint |