4d85a2eebb
- Move hermes ACP integration tests to __tests__/integration/ - Add test:ci script to all packages (excludes integration/) - CI workflow uses test:ci instead of test - bun test still runs everything (unit + integration) Refs #510
29 lines
441 B
YAML
29 lines
441 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
|
|
- run: bun install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: bun run build
|
|
|
|
- name: Lint
|
|
run: bunx biome check .
|
|
|
|
- name: Test
|
|
run: bun run test:ci
|