mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
18 lines
732 B
YAML
18 lines
732 B
YAML
language: node_js
|
|
node_js:
|
|
- '0.10'
|
|
before_install:
|
|
- "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' | codeclimate"
|
|
addons:
|
|
code_climate:
|
|
repo_token: bb97549208bf4dea16807ff0a5fdd291be0f5b836ce6cfa73020bd3010716090
|