Skip to content

Bump eslint from 9.8.0 to 9.9.0 #1173

Bump eslint from 9.8.0 to 9.9.0

Bump eslint from 9.8.0 to 9.9.0 #1173

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test