Skip to content

feat(command-center): improve telemetry and orchestration UX #6

feat(command-center): improve telemetry and orchestration UX

feat(command-center): improve telemetry and orchestration UX #6

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Server — install, typecheck, tests
working-directory: apps/server
run: |
bun install
bun run typecheck
bun run test
- name: Client — install, unit tests, build
working-directory: apps/client
run: |
bun install
bun run test
bun run build