Skip to content

Bump eslint from 8.57.0 to 9.12.0 #112

Bump eslint from 8.57.0 to 9.12.0

Bump eslint from 8.57.0 to 9.12.0 #112

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check code format
run: npm run prettier
- name: Lint
run: npm run lint
- name: Build
run: npm run build