Skip to content

chore: rename repo links to agent-trail #35

chore: rename repo links to agent-trail

chore: rename repo links to agent-trail #35

Workflow file for this run

name: Checks
on:
pull_request:
push:
branches:
- '**'
permissions:
contents: read
concurrency:
group: checks-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
name: TypeScript + Biome
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: TypeScript typecheck
run: bun run typecheck
- name: Biome check
run: bun run check
- name: Unit tests
run: bun test tests/unit
- name: API tests
run: bun test tests/api
- name: Build
run: bun run build