Make travis run the tests
This commit is contained in:
parent
9da4ece76d
commit
b16e9536f0
2 changed files with 4 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- "0.10"
|
||||
install: "npm -g install jshint"
|
||||
script: "jshint js/*"
|
||||
install: "npm install"
|
||||
script: "sh -e run_tests.sh"
|
||||
notifications:
|
||||
email: false
|
||||
irc:
|
||||
|
|
2
run_tests.sh
Normal file
2
run_tests.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
./node_modules/.bin/jshint js/*
|
||||
npm test
|
Loading…
Reference in a new issue