Skip to content

Make the build enforceable: typecheck, lint and CI all green #1

Make the build enforceable: typecheck, lint and CI all green

Make the build enforceable: typecheck, lint and CI all green #1

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
check:
name: Typecheck and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Lint
run: bun run lint