Skip to content

Commit 482b8a3

Browse files
committed
travis CI integrated and coveralls
1 parent 9c87d0b commit 482b8a3

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sudo: false
2+
language: node_js
3+
node_js:
4+
- node
5+
install:
6+
- npm ci
7+
8+
script:
9+
- npm run lint
10+
- npm run test:coveralls
11+
12+
notifications:
13+
email: false

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"test": "jest",
1616
"test:watch": "jest --watch",
1717
"test:coverage": "jest --coverage",
18+
"test:coveralls": "jest --coverage --coverageRporters=text-lcov | coveralls",
1819
"test:staged": "jest --findRelatedTests"
1920
},
2021
"husky": {

0 commit comments

Comments
 (0)