Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI

on:
pull_request:
push:
branches:
- main

permissions:
contents: read

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
checks:
name: Typecheck and unit tests
runs-on: ubuntu-latest
timeout-minutes: 25

steps:
- name: Checkout
uses: actions/checkout@v5

- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.13"

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Typecheck
run: |
bun run --cwd packages/protocol check
bun run --cwd packages/agent-sessions check
bun run --cwd packages/runtime check
bun run --cwd packages/session-trace check
bun run --cwd packages/session-trace-react check
bun run --cwd apps/desktop check
bun run --cwd apps/cloud check
bun run --cwd apps/mesh-front-door check

- name: Unit tests
run: bun run test:unit
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
bun-version: "1.3.13"

- run: cd landing && bun install && bun run build

Expand Down
Loading