Add workflow boilerplate files

This commit is contained in:
Brian M. Carlson
2014-09-15 20:49:09 -04:00
parent 36572a8b7b
commit 33f6ecc11b
2 changed files with 20 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.PHONY: publish-patch test
test:
npm test
patch: test
npm version patch -m "Bump version"
git push origin master --tags
npm publish
minor: test
npm version minor -m "Bump version"
git push origin master --tags
npm publish