Skip to content

Commit 12e4695

Browse files
committed
[⚙️] piepline to do build test
1 parent 8e3b68e commit 12e4695

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: test
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
branches:
7+
- "*"
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Git checkout
13+
uses: actions/checkout@master
14+
- name: Install dependencies
15+
run: npm install
16+
- name: Run build
17+
run: npm run build

0 commit comments

Comments
 (0)