Skip to content

Fix lint/type checks #22

Fix lint/type checks

Fix lint/type checks #22

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run type-check
run: npm run type-check
- name: Run build
run: npm run build