Add infrastructure files

This commit is contained in:
Brian M. Carlson 2014-11-03 10:44:19 -05:00
parent 0b45eda5a3
commit 1dd2d3a938
2 changed files with 20 additions and 0 deletions

6
.travis.yml Normal file
View File

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

14
Makefile Normal file
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