Skip to content

Commit 58f2bba

Browse files
committed
Add CI Build MCP Server
1 parent e12e3cb commit 58f2bba

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Continuous integration
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
8+
jobs:
9+
build-mcp-server:
10+
name: Build MCP Server
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v5
14+
- uses: actions/setup-node@v5
15+
16+
- name: Install dependencies
17+
run: yarn install --immutable
18+
19+
- name: Build
20+
run: yarn build

0 commit comments

Comments
 (0)