diff --git a/Makefile b/Makefile index bad2dc8d2049dab1da15c1665b3e907e8b1a8ca4..e08f7bb09847483d7b146668a064a3639b9aae43 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,11 @@ lint: eslint --reset . coverage: - rm -rf coverage + rm -rf coverage istanbul cover ./node_modules/.bin/_mocha test-ci: lint istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage + +.PHONY: lint coverage +.SILENT: lint