Fix workspace chat isolation and conversation streaming (#11) #45
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] | |
| env: | |
| OPENDOCUMENTS_PROBE_RETRIES: "1" | |
| OPENDOCUMENTS_PROBE_DELAY_MS: "0" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: rm -f package-lock.json && npm install | |
| - run: npx turbo build | |
| - run: npx turbo typecheck | |
| - run: npx turbo lint | |
| - run: npx turbo test |