Skip to content

Commit

Permalink
require tests to run before tagging & releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
developit committed Feb 27, 2017
1 parent 375c6b6 commit 171edc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace $npm_package_main | gzip-size --raw)\"",
"test": "eslint src test && mocha --compilers babel-register",
"prepublish": "npm run -s build",
"release": "npm run build -s && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
"release": "npm run -s build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"authors": [
"Jason Miller <[email protected]>"
Expand Down

0 comments on commit 171edc6

Please sign in to comment.