habitica-self-host/.travis.yml

17 lines
684 B
YAML
Raw Normal View History

2013-09-29 14:31:35 +00:00
language: node_js
node_js:
2015-10-30 13:16:35 +00:00
- '0.10'
2015-10-29 16:12:53 +00:00
before_install:
2015-11-08 02:09:36 +00:00
- "npm install -g npm@2"
2015-10-29 16:12:53 +00:00
- "sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10"
2015-10-30 13:16:35 +00:00
- "echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list"
- "sudo apt-get update"
- "sudo apt-get install mongodb-org-server"
before_script:
- 'npm install -g grunt-cli mocha'
2013-12-25 19:17:05 +00:00
- cp config.json.example config.json
2015-03-26 21:37:25 +00:00
- "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
2015-04-05 01:45:36 +00:00
- "export DISPLAY=:99"
2015-06-09 08:21:54 +00:00
after_script:
2015-11-08 02:09:36 +00:00
- "./node_modules/.bin/lcov-result-merger 'coverage/**/*.info' | ./node_modules/coveralls/bin/coveralls.js"