Skip to content

fix: 4 edge-case bugs in grouping, export, and sticky tools #12

fix: 4 edge-case bugs in grouping, export, and sticky tools

fix: 4 edge-case bugs in grouping, export, and sticky tools #12

Workflow file for this run

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