Skip to content

Commit a976b94

Browse files
authored
setup CI
1 parent 3d4f87f commit a976b94

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/main.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install
16+
run: npm install
17+
- name: Compile
18+
run: npm run compile
19+
- name: Test
20+
run: npm test

0 commit comments

Comments
 (0)