Skip to content

Commit 2a9dd89

Browse files
pcarletonmozmo15
authored andcommitted
feat: add client conformance testing (modelcontextprotocol#1360)
1 parent 5b248f0 commit 2a9dd89

6 files changed

Lines changed: 751 additions & 0 deletions

File tree

.github/workflows/conformance.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Conformance Tests
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
client-conformance:
14+
runs-on: ubuntu-latest
15+
continue-on-error: true # Non-blocking initially
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Install pnpm
19+
uses: pnpm/action-setup@v4
20+
with:
21+
run_install: false
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: 24
25+
cache: pnpm
26+
cache-dependency-path: pnpm-lock.yaml
27+
- run: pnpm install
28+
- run: pnpm run build:all
29+
- run: pnpm run test:conformance:client:all

pnpm-lock.yaml

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)