Add workflow boilerplate files

PushSpring-master
Brian M. Carlson 10 years ago
parent 36572a8b7b
commit 33f6ecc11b

@ -0,0 +1,6 @@
language: node_js
node_js:
- "0.10"
- "0.11"
env:
- PGUSER=postgres

@ -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
Loading…
Cancel
Save