File tree Expand file tree Collapse file tree 4 files changed +27
-2
lines changed
Expand file tree Collapse file tree 4 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1+ name : setup
2+ description : Common setup steps for bun
3+ runs :
4+ using : composite
5+ steps :
6+ - uses : actions/checkout@v4
7+ shell : bash
8+ - uses : oven-sh/setup-bun@v2
9+ shell : bash
Original file line number Diff line number Diff line change 1+ name : release
2+ jobs :
3+ test :
4+ name : Test
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : ./.github/actions/setup
8+ - run : bun run test
9+ build :
10+ name : Build
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : ./.github/actions/setup
14+ - run : bun run build
15+ run : |
16+ ls ${{ github.workspace }}
Original file line number Diff line number Diff line change 88 "dev" : " NODE_ENV=development bun run --watch src/index.civet" ,
99 "inspect" : " NODE_ENV=development mcp-inspector bun src/index.civet" ,
1010 "build" : " bun run build.civet" ,
11- "start" : " ./dist/bitbucket-mcp-server"
11+ "start" : " ./dist/bitbucket-mcp-server" ,
12+ "test" : " echo 'No tests to run'"
1213 },
1314 "dependencies" : {
1415 "@modelcontextprotocol/sdk" : " latest" ,
Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ This will open the MCP Inspector with a GUI to play around and explore the MCP t
110110
111111## To do
112112
113- - Write docs on the available tools
114113- Decrease built binary file size
115114- Github action for build and tests
116115
You can’t perform that action at this time.
0 commit comments