Skip to content

Bump eslint from 8.57.0 to 9.8.0 #157

Bump eslint from 8.57.0 to 9.8.0

Bump eslint from 8.57.0 to 9.8.0 #157

Workflow file for this run

name: "Unit Tests"
on:
pull_request:
push:
branches:
- "main"
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "21.x"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run type checking
run: npm run tsc
- name: Run tests
run: npm run vitest:ci