mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
18 lines
711 B
YAML
18 lines
711 B
YAML
language: node_js
|
|
node_js:
|
|
- '4.3.1'
|
|
before_install:
|
|
- "npm install -g npm@3"
|
|
- "npm install -g gulp"
|
|
- "sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10"
|
|
- "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'
|
|
- cp config.json.example config.json
|
|
- "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
|
|
- "export DISPLAY=:99"
|
|
after_script:
|
|
- "./node_modules/.bin/lcov-result-merger 'coverage/**/*.info' | ./node_modules/coveralls/bin/coveralls.js"
|