Skip to content

Commit 3cbdf4e

Browse files
committed
Add Travis and Codecov integration
1 parent 43c5235 commit 3cbdf4e

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Diff for: .travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: node_js
2+
node_js:
3+
- "4"
4+
- "stable"
5+
notifications:
6+
email: false
7+
cache:
8+
directories:
9+
- $HOME/.npm/
10+
- node_modules
11+
before_install:
12+
- npm install -g codecov
13+
after_success:
14+
- npm run cover
15+
- codecov

Diff for: codecov.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
threshold: 1
6+
changes: off
7+
patch: off
8+
9+
comment: off

0 commit comments

Comments
 (0)