We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702f827 commit c4628d2Copy full SHA for c4628d2
.github/workflows/main.yml
@@ -0,0 +1,34 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+ pull_request:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 18
18
+ cache: npm
19
20
21
22
+ repository: modelcontextprotocol/typescript-sdk
23
+ ssh-key: ${{ secrets.TYPESCRIPT_SDK_KEY }}
24
+ path: packages/@modelcontextprotocol/sdk
25
26
+ - run: npm ci
27
+ working-directory: packages/@modelcontextprotocol/sdk
28
29
+ - run: npm pack
30
31
32
+ - run: npm install --save packages/@modelcontextprotocol/sdk/modelcontextprotocol-sdk-*.tgz
33
34
+ - run: npm run build
0 commit comments