feat: MCP server + release hardening #1
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, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: ['18', '20', '22'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm install | |
| - run: npm run version:check | |
| - run: npm test | |
| # Smoke: dogfood gate on itself. `npm install` pulls the four @nugehs | |
| # tools as optionalDependencies, so this exercises the node_modules | |
| # resolution path (not just the dev sibling-checkout path). No --ci, so | |
| # it can't fail the build — it proves end-to-end orchestration resolves. | |
| - run: node src/cli.js . --json |