feat(vercel-functions): WebSocket guidance + SSE/streaming clarification #190
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| 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 --frozen-lockfile | |
| # Verify committed generated artifacts match their sources BEFORE the | |
| # build step regenerates (and thus clobbers) them in the working tree. | |
| - name: Check committed manifest is up-to-date | |
| run: bun run build:manifest:check | |
| - name: Check generated files are up-to-date | |
| run: bun run build:from-skills:check | |
| - name: Build | |
| run: bun run build | |
| - name: Typecheck | |
| run: bun run typecheck | |
| - name: Validate skills | |
| run: bun run validate | |
| - name: Test | |
| run: bun test |