Skip to content

Bump eslint from 8.57.0 to 9.36.0 #983

Bump eslint from 8.57.0 to 9.36.0

Bump eslint from 8.57.0 to 9.36.0 #983

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
name: Tests and validations
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node:
- 18
- 20
- 22
- 24
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Run coverage report
uses: codecov/codecov-action@v5
- name: Run validations
run: npm run lint