Skip to content

Commit bd036fc

Browse files
committed
feat(build): add code coverage, closes #3
1 parent 0999df2 commit bd036fc

File tree

5 files changed

+1503
-166
lines changed

5 files changed

+1503
-166
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Outputs
22
dist/
3+
coverage/
4+
.nyc_output
35

46
# IDEs
57
.idea/

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
schematics/**/files/
22
dist/
3+
coverage/
4+
.nyc_output/
35
CHANGELOG.md

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ node_js:
33
- "9"
44
dist: trusty
55
install:
6-
7-
- npm ci
6+
- npm i -g npm@latest
7+
- npm install codecov -g
8+
- npm ci
89
script:
9-
- npm test
10+
- npm run ci
11+
after_success:
12+
- codecov

0 commit comments

Comments
 (0)