From b8d1d2de80227dc1f123a23ba453686acde4d06e Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sat, 28 Feb 2026 01:16:40 +0000 Subject: [PATCH] Add CI workflow: build, typecheck, test Co-authored-by: Ona --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..7fda737 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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