fix: 4 edge-case bugs in grouping, export, and sticky tools #12
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: | |
| jobs: | |
| test: | |
| name: Node ${{ matrix.node }} / ${{ matrix.transport }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [20, 22] | |
| transport: [stdio, http] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run type-check | |
| - run: npm run build | |
| - run: npm test -- --run | |
| - name: MCP smoke | |
| env: | |
| MCP_TRANSPORT: ${{ matrix.transport }} | |
| RUN_MCP_SMOKE: 'true' | |
| run: | | |
| if [ "${{ matrix.transport }}" = "stdio" ]; then | |
| npm run test:smoke:stdio | |
| else | |
| npm run test:smoke:http | |
| fi | |
| - name: Tool discovery payload budget | |
| run: npm run bench:tools | |
| - name: Startup performance budget | |
| run: npm run bench:startup |