Skip to content

Commit 6beb5d5

Browse files
committed
add github ci
1 parent fccfc56 commit 6beb5d5

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

app/.github/workflows/build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: 20
23+
cache: npm
24+
25+
- name: Install dependencies
26+
run: npm ci
27+
28+
- name: Install Python dependencies
29+
run: python3 -m pip install --user pyyaml
30+
31+
- name: Build
32+
run: npm run build

0 commit comments

Comments
 (0)