Skip to content

Bump eslint from 8.57.0 to 9.2.0 #2100

Bump eslint from 8.57.0 to 9.2.0

Bump eslint from 8.57.0 to 9.2.0 #2100

Workflow file for this run

name: test
on: [push, pull_request, workflow_dispatch]
jobs:
test:
name: Node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm run build
run: npm run build
- name: npm test
run: npm run test