Skip to content

fix: resolve typecheck errors in integration tests for CI #3

fix: resolve typecheck errors in integration tests for CI

fix: resolve typecheck errors in integration tests for CI #3

Workflow file for this run

name: CLI Tests
on:
push:
branches: [main, feat/cli]
paths:
- 'apps/cli/**'
- 'packages/shared/**'
- '.github/workflows/cli-tests.yml'
pull_request:
paths:
- 'apps/cli/**'
- 'packages/shared/**'
jobs:
test:
name: Unit & Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Typecheck
run: bun run typecheck
working-directory: apps/cli
- name: Lint
run: bunx biome check apps/cli/
- name: Run tests
run: bun test
working-directory: apps/cli