Switch repo workflows to actions-v3 and Node.js v24 actions #151
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: | |
| - trunk | |
| paths: | |
| - "**.js" | |
| - "**.mjs" | |
| - .github/workflows/js-linting.yml | |
| pull_request: | |
| paths: | |
| - "**.js" | |
| - "**.mjs" | |
| - .github/workflows/js-linting.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| FORCE_COLOR: 2 | |
| jobs: | |
| JSLintingCheck: | |
| name: Lint JavaScript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Prepare node | |
| uses: woocommerce/grow/prepare-node@actions-v3 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: Prepare annotation formatter | |
| uses: woocommerce/grow/eslint-annotation@actions-v3 | |
| # Turn off import/no-unresolved rule since this check doesn't install packages for all sub-packages. | |
| - name: Lint JavaScript and annotate linting errors | |
| run: | | |
| npm run lint:js -- --rule 'import/no-unresolved: 0' --format ./eslintFormatter.cjs |