Add CI workflow: build, typecheck, test

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-02-28 01:16:40 +00:00
parent c52e5c7765
commit b8d1d2de80

23
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run build
- run: bun run typecheck
- run: bun test