We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c87d0b commit 482b8a3Copy full SHA for 482b8a3
.travis.yml
@@ -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
@@ -15,6 +15,7 @@
15
"test": "jest",
16
"test:watch": "jest --watch",
17
"test:coverage": "jest --coverage",
18
+ "test:coveralls": "jest --coverage --coverageRporters=text-lcov | coveralls",
19
"test:staged": "jest --findRelatedTests"
20
},
21
"husky": {
0 commit comments