Skip to content

claude agi

claude agi #120

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
jobs:
check:
name: Lint, Format & Type Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run --filter=@apps/server build
- run: bun run --filter=@apps/desktop build