Skip to content

🗑️ removed lefthook #25

🗑️ removed lefthook

🗑️ removed lefthook #25

Workflow file for this run

name: ci
concurrency: ${{ github.workflow }}-${{ github.ref }}
on:
push:
pull_request:
jobs:
typecheck:
name: 🧪 typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run typecheck
lint:
name: 🧪 lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run lint
test:
name: 🧪 test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run test