Skip to content

Bump eslint from 8.57.1 to 9.16.0 #147

Bump eslint from 8.57.1 to 9.16.0

Bump eslint from 8.57.1 to 9.16.0 #147

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- "22"
- "20"
- "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/setup-node@v2.1.2
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