fix: bridge permission.asked event to SSE stream so TUI SDK receives permission prompts (#298) #263
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, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - name: Setup environment | |
| run: | | |
| mkdir -p ~/.local/share/opencode/log | |
| git config --global user.name "CI" | |
| git config --global user.email "ci@test.local" | |
| - run: bun install | |
| - run: bun typecheck | |
| - working-directory: packages/opencode | |
| run: bun test |