Skip to content

Commit 0e84fbb

Browse files
[MCP-1] feat: build check workflow (#15)
* fix: added build check workflow * chore: typo fixes
1 parent 87d4fa4 commit 0e84fbb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build_check.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build Check
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
branches:
7+
- canary
8+
- main
9+
10+
jobs:
11+
build:
12+
name: Build Check
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Install dependencies
21+
run: npm ci
22+
23+
- name: Build package
24+
run: npm run build

0 commit comments

Comments
 (0)