Bump eslint from 8.57.1 to 9.12.0 #130
Workflow file for this run
This file contains 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: Tests | |
on: | |
push: | |
pull_request: | |
repository_dispatch: | |
types: manual-test-run | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- "18" | |
- "16" | |
- "14" | |
include: | |
- node: "14" | |
ENABLE_CODE_COVERAGE: true | |
name: Run tests on NodeJS ${{ matrix.node }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install NPM dependencies | |
run: npm install | |
- name: Run tests | |
run: npm test | |
- name: Upload code coverage | |
if: matrix.ENABLE_CODE_COVERAGE | |
uses: codecov/codecov-action@v1 |