Skip to content

Bump eslint from 8.55.0 to 8.56.0 #333

Bump eslint from 8.55.0 to 8.56.0

Bump eslint from 8.55.0 to 8.56.0 #333

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: Typecheck
run: npm run typecheck
- name: Test
run: npm run test