fix: bound HTTP bodies before MCP adapter conversion #3
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: Check | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [20, 22, 24, 26] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: '1.4.2' | |
| - name: Install locked dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Check types, build and test both transports | |
| run: bun run check | |
| - name: Verify package contents | |
| run: npm pack --dry-run --ignore-scripts |