feat: bootstrap BoxBrain framework
Some checks failed
CI / verify (push) Failing after 3s

This commit is contained in:
2026-05-14 19:30:34 +09:00
commit c047c5a23d
16 changed files with 1846 additions and 0 deletions

24
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,24 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
verify:
runs-on: ubuntu-latest
container:
image: oven/bun:1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Test
run: bun run test
- name: Typecheck
run: bun run check
- name: Build
run: bun run build