We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8389290 commit 44f7478Copy full SHA for 44f7478
2 files changed
.github/workflows/ci.yml
@@ -41,7 +41,7 @@ jobs:
41
path: dist/
42
43
test-mcp:
44
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
45
needs: build
46
47
steps:
@@ -61,6 +61,7 @@ jobs:
61
- name: Test with MCP Inspector
62
run: |
63
npx @modelcontextprotocol/inspector node dist/index.js &
64
- sleep 5
65
- kill %1
66
- continue-on-error: true
+ curl -O https://raw.githubusercontent.com/vishnubob/wait-for-it/refs/heads/master/wait-for-it.sh
+ chmod +x wait-for-it.sh
+ ./wait-for-it.sh --timeout=240 -h localhost -p 6274
67
+ curl -v http://localhost:6277/config
.gitignore
@@ -29,6 +29,7 @@ logs/
29
# Testing
30
coverage/
31
.nyc_output/
32
+wait-for-it.sh
33
34
# Package manager
35
yarn.lock
0 commit comments