Skip to content

chore: setup CI

chore: setup CI #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
format:
name: 💅 Format
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Run format
run: bun run format:check
typecheck:
name: ✅ Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Run typecheck
run: bun run typecheck