feat(speckit-ext): /speckit.companion.auto runs the whole pipeline hands-off #671
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] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Compile TypeScript | |
| run: npm run compile | |
| - name: Run tests | |
| run: npm test | |
| capture-suite: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Run capture tests (stdlib unittest, no deps) | |
| run: python3 -m unittest discover -s speckit-extension/tests -p "test_*.py" | |
| - name: Check capture shape parity | |
| run: python3 speckit-extension/scripts/check-shape-parity.py | |
| - name: Check node-assembly parity (commands re-assemble byte-identical) | |
| run: python3 speckit-extension/scripts/assemble-nodes.py --check |