Skip to content

Commit de63c43

Browse files
committed
Unittests added
1 parent 3ec3291 commit de63c43

File tree

5 files changed

+11236
-1
lines changed

5 files changed

+11236
-1
lines changed

.github/workflows/git-build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: git-ci-build
2+
3+
on:
4+
[push]
5+
6+
jobs:
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: '12.18.3'
16+
- run: npm ci
17+
- run: npm run test
18+
- run: npm run test-coverage
19+
- name: Coveralls
20+
uses: coverallsapp/github-action@master
21+
with:
22+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)