We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afead5b commit e00fa8eCopy full SHA for e00fa8e
.gitignore
@@ -1 +1,3 @@
1
+coverage/
2
node_modules
3
+.nyc_output/
.travis.yml
@@ -2,6 +2,8 @@ language: node_js
node_js:
- '4'
4
- 'lts/*'
5
- - 'node'
6
-env:
7
- - PGUSER=postgres
+matrix:
+ include:
+ - name: 'Code Coverage'
8
+ node_js: 'stable'
9
+ script: 'npm run coverage-ci'
Makefile
@@ -1,11 +1,14 @@
-.PHONY: publish-patch test
+.PHONY: coverage minor patch test
test:
npm test
lint:
npm run lint
+coverage:
10
+ npm run coverage
11
+
12
patch: test
13
npm version patch -m "Bump version"
14
git push origin master --tags
0 commit comments