Skip to content

Migration/bun rescript #7

Migration/bun rescript

Migration/bun rescript #7

Workflow file for this run

name: CI
on:
push:
branches: [main, "migration/*"]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build (ReScript compile + typecheck)
run: bun run build
- name: Run tests
run: bun test