fxa-content-server/.travis.yml

28 строки
990 B
YAML
Исходник Обычный вид История

2013-08-29 04:18:09 +04:00
language: node_js
node_js:
- "0.10"
env:
global:
# Sauce Labs are OK with this and it is currently necessary to expose this information for testing pull requests;
# please get your own free key if you want to test yourself
- SAUCE_USERNAME: intern-example-ci
- SAUCE_ACCESS_KEY: 89ac3089-17b3-4e9b-aaf3-c475b27fa441
install:
# install the auth server. Only include prod resources to speed up the build.
- git clone git://github.com/mozilla/fxa-auth-server.git
- cd fxa-auth-server
- npm install
- node ./scripts/gen_keys.js
- npm start &
# install everything for full dev in the fxa-content-server.
- cd ..
- npm install
# for local developers, grunt-cli is installed globally.
# We have to install it for travis.
- npm install grunt-cli
# copy over the configuration that can be used to start the server.
- cp server/config/local.json-dist server/config/local.json
- npm start &
# now run the tests!
script: grunt lint && npm run-script test-remote