Skip to content

Commit 2fde949

Browse files
committed
test github actions
1 parent 3a3d092 commit 2fde949

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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 }}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
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",

readme.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)