Enabled Travis CI and edited .gitignore for bin files

This commit is contained in:
Rachel Xiang 2014-01-12 14:10:36 -05:00
parent 502fe4fa6b
commit ce9550779e
4 changed files with 22 additions and 4 deletions

2
.gitignore vendored
View file

@ -71,5 +71,7 @@ FLOOBITS_README.md
# mongodb
db/
bin/node/
bin/mongo/
### If you add something here, copy it to the end of .npmignore, too. ###

View file

@ -86,6 +86,9 @@ dump.rdb
# Mongo
mongo/
bin/node/
bin/mongo/
# Karma coverage
coverage/

12
.travis.yml Normal file
View file

@ -0,0 +1,12 @@
nguage: node_js
node_js:
- 0.10
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- "./node_modules/.bin/bower install"
- "gem install sass"
- "./node_modules/.bin/brunch b"
script:
- "./node_modules/.bin/karma start --browsers Firefox --single-run"

View file

@ -75,7 +75,8 @@ module.exports = function(config) {
'karma-chrome-launcher',
'karma-phantomjs-launcher',
'karma-coffee-preprocessor',
'karma-coverage'
'karma-coverage',
'karma-firefox-launcher'
]
});