Skip to content

Cut the interactive TUI over to OpenTUI #21

Cut the interactive TUI over to OpenTUI

Cut the interactive TUI over to OpenTUI #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.14"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Build
run: bun run build
# Corbits Code codebase only — ./src and ./tests. The vendored interchange
# inference package (vendor/) is out of scope for this repo's CI.
- name: Test
run: bun run test