We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6c149 commit 54604c3Copy full SHA for 54604c3
.github/workflows/npm-publish.yml
@@ -23,6 +23,8 @@ jobs:
23
run: npm ci
24
- name: Build
25
run: npm run build
26
+ - name: Test
27
+ run: npm test
28
29
publish-npm:
30
needs: build
packages/common/package.json
@@ -6,7 +6,7 @@
6
"private": false,
7
"scripts": {
8
"build": "tsc",
9
- "test": "jest",
+ "test": "jest --passWithNoTests",
10
"dev": "nodemon --exec ts-node --esm src/index.ts"
11
},
12
"dependencies": {
packages/confluence/package.json
@@ -11,7 +11,7 @@
"dev": "nodemon src/index.ts",
"inspect": "mcp-inspector node build/index.js",
13
"inspect:dev": "mcp-inspector ts-node src/index.ts",
14
- "test": "jest"
+ "test": "jest --passWithNoTests"
15
16
17
"@atlassian-dc-mcp/common": "^0.10.0",
0 commit comments