Skip to content

Bump eslint from 8.50.0 to 8.54.0 #661

Bump eslint from 8.50.0 to 8.54.0

Bump eslint from 8.50.0 to 8.54.0 #661

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: [16, 17, 18, 19, 20]
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Run coverage report
uses: codecov/codecov-action@v3
- name: Run validations
run: npm run lint