Skip to content

chore: lint

chore: lint #82

Workflow file for this run

name: CI
on:
pull_request:
branches: main
push:
branches: main
merge_group: {}
jobs:
test:
name: test, lint & typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/setup
- name: Build
run: bun run build
- name: Lint
run: bun lint
- name: Typecheck
run: bun typecheck
- name: Test
run: bun run test