9a7ad34e55
- e2e-walkthrough.yaml: examples/ → .workflows/ (project workflows, not examples) - .gitea/workflows/ci.yml: bun test → bun run test (avoid legacy-packages) - .plan/: removed stale test spec from #335 小橘 🍊
26 lines
381 B
YAML
26 lines
381 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ['*']
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Install dependencies
|
|
run: bun install
|
|
|
|
- name: Check
|
|
run: bun run check
|
|
|
|
- name: Test
|
|
run: bun run test
|