064c9afa1e
CI / check (push) Failing after 43s
Applied monorepo normalization: - Updated TypeScript to use composite project references with NodeNext - Configured Biome for linting and formatting - Standardized package.json metadata across all packages - Set up changesets for version management and npm publishing - Added vitest test infrastructure to all packages - Created Gitea Actions CI pipeline - Added solve-issue workflow Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
373 B
YAML
27 lines
373 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ['*']
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
|
|
- run: bun install
|
|
|
|
- name: Build
|
|
run: bun run build
|
|
|
|
- name: Lint
|
|
run: bun run check
|
|
|
|
- name: Test
|
|
run: bun run test:ci
|