Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Conformance Tests

on:
push:
branches: [main]
pull_request:
workflow_dispatch:

jobs:
client-conformance:
runs-on: ubuntu-latest
continue-on-error: true # Non-blocking initially
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- uses: pnpm/action-setup@v4
with:
version: 10.24.0
- run: pnpm install
- run: pnpm run build:all
- run: pnpm run conformance:client
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@
"lint:all": "pnpm -r lint",
"lint:fix:all": "pnpm -r lint:fix",
"check:all": "pnpm -r typecheck && pnpm -r lint",
"test:all": "pnpm -r test"
"test:all": "pnpm -r test",
"conformance:client": "npx tsx src/conformance/everything-client.ts",
"test:conformance:client": "npx @modelcontextprotocol/conformance client --command 'npx tsx src/conformance/everything-client.ts'",
"test:conformance:client:all": "npx @modelcontextprotocol/conformance client --command 'npx tsx src/conformance/everything-client.ts' --suite all"
},
"devDependencies": {
"@modelcontextprotocol/client": "workspace:^",
"@cfworker/json-schema": "catalog:runtimeShared",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading