Skip to content

Bump eslint from 8.56.0 to 8.57.0 #525

Bump eslint from 8.56.0 to 8.57.0

Bump eslint from 8.56.0 to 8.57.0 #525

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
branches: main
jobs:
run:
name: Run
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
steps:
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Clean install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test