fix(dashboard): replace removed env import with toOrchestratorConfig #108
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CI Workflow — Agent Valley (Bun + TypeScript monorepo) | |
| # | |
| # Jobs: validate → lint → typecheck → test (parallel after validate) | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| name: Harness validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run validate.sh | |
| run: | | |
| chmod +x ./scripts/harness/validate.sh | |
| ./scripts/harness/validate.sh | |
| lint: | |
| name: Lint (Biome) | |
| runs-on: ubuntu-latest | |
| needs: validate | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - run: bun run lint | |
| typecheck: | |
| name: Typecheck | |
| runs-on: ubuntu-latest | |
| needs: validate | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - run: bunx tsc --noEmit -p packages/core/tsconfig.json | |
| - run: bunx tsc --noEmit -p apps/cli/tsconfig.json | |
| test: | |
| name: Test (Vitest) | |
| runs-on: ubuntu-latest | |
| needs: validate | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - run: mkdir -p "$WORKSPACE_ROOT" && bun run test | |
| env: | |
| WORKSPACE_ROOT: ${{ runner.temp }}/workspaces |