Skip to content

Commit 61567a3

Browse files
authored
Create main.yml
1 parent 4efb0d8 commit 61567a3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

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

0 commit comments

Comments
 (0)