Docs: expand README hero with full product overview #5
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: [master, "cursor/**"] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| env: | |
| ELECTRON_MCP_NO_SANDBOX: "1" | |
| CI: "true" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm install --foreground-scripts | |
| - name: Ensure Electron binary | |
| run: npm run ensure-electron | |
| - name: Run tests under Xvfb | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: npm test |