We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb0e16c commit 0c45389Copy full SHA for 0c45389
.travis.yml
@@ -0,0 +1,16 @@
1
+language: node_js
2
+node_js:
3
+ - '8'
4
+ - '10'
5
+ - stable
6
+
7
+install:
8
+ - npm install
9
10
+script:
11
+ - npm run lint
12
+ - npm run build
13
+ - npm test
14
15
+after_script:
16
+ - npm run coveralls
package.json
@@ -8,7 +8,8 @@
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint \"src/**/*.ts\" && eslint \"test/**/*.ts\"",
- "test": "jest --verbose"
+ "test": "jest --verbose",
+ "coveralls": "coveralls coverage/lcov.info"
},
"repository": {
"type": "git",
0 commit comments