Add chat slash commands and stream cancel #110
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] | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| # Pin to 1.1.39 - Bun segfaults during test cleanup on Linux due to | |
| # timer callback bugs. This version has been most stable in testing. | |
| # See: https://github.com/oven-sh/bun/issues/22452 | |
| bun-version: "1.1.39" | |
| - run: bun install | |
| - run: bun run typecheck | |
| - run: bun run test |