Implement codebase indexing for CLI and new extension #665
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
| name: docs-build | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "packages/kilo-docs/**" | |
| pull_request: | |
| paths: | |
| - "packages/kilo-docs/**" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build docs site | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: ./.github/actions/setup-bun | |
| - name: Build site | |
| run: bun run --filter @kilocode/kilo-docs build | |
| env: | |
| NEXT_PUBLIC_POSTHOG_KEY: ${{ secrets.POSTHOG_API_KEY }} | |
| - name: Run tests | |
| run: bun run --filter @kilocode/kilo-docs test |