Make HTTP MCP transport stateless. #27
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: | |
| ci: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: actions/setup-node@v4.4.0 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Security audit | |
| run: npm audit --audit-level=high | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Lint | |
| run: npm run lint | |
| - name: Unit & integration tests | |
| run: npm test | |
| - name: E2E — full suite (MCP tools + OAuth metadata + real JWT via Docker) | |
| run: | | |
| python3 tests/demo_e2e.py --start-services --oauth \ | |
| --oauth-resource-uri "http://127.0.0.1:3333" \ | |
| --oauth-auth-servers "https://auth.example.com" \ | |
| --docker-oauth |