Add context-cost badge to docs-ai-search (422 tokens — among the leanest we measured) #381
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| branches: ['main'] | |
| env: | |
| FORCE_COLOR: 1 | |
| jobs: | |
| test: | |
| name: Test & Check | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Syncpack lint | |
| run: pnpm check:deps | |
| - name: Run linter | |
| run: pnpm check:turbo | |
| - name: Run linter (formatting) | |
| run: pnpm check:format | |
| - name: Run tests | |
| run: pnpm test | |
| build-workers: | |
| name: Build Workers | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Build Workers | |
| run: pnpm turbo deploy -- -e staging --dry-run |