⛔ DO NOT MERGE — feat: wire OpenCode into spawn dialogs and empty-state UI (headless routing) #190
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: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run verify:mcp-resources-drift | |
| - run: npm test | |
| - run: npx vitest run src/main/broker.test.ts | |
| - run: npm run build | |
| packaged-mcp-smoke: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run verify:mcp-resources-drift | |
| - run: npm run dist:mac | |
| - run: npm run verify:mcp-spawn |