Skip to content

Bump eslint from 7.32.0 to 9.9.1 #821

Bump eslint from 7.32.0 to 9.9.1

Bump eslint from 7.32.0 to 9.9.1 #821

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x, 21.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Install Test
run: npm install
- name: Run UnitTests
run: npm test
env:
CI: true