Files
BoxBrain/.gitea/workflows/ci.yml
Shinwoo PARK c047c5a23d
Some checks failed
CI / verify (push) Failing after 3s
feat: bootstrap BoxBrain framework
2026-05-14 19:30:34 +09:00

25 lines
452 B
YAML

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