angular-docs-cn/.travis.yml
Patrice Chalin a7435c3f8c chore(install): put all install commands into a single script (#1754)
This makes it easier to run manually, e.g., after having reset all
local typings.
2016-06-27 16:55:39 -07:00

24 lines
413 B
YAML

dist: trusty
sudo: required
language: node_js
node_js:
- "5"
os:
- linux
env:
global:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
- DISPLAY=:99.0
- CHROME_BIN=chromium-browser
matrix:
- SCRIPT="lint"
- SCRIPT="run-e2e-tests --fast"
before_install:
- npm install -g gulp --no-optional
before_script:
- sh -e /etc/init.d/xvfb start
install:
- ./script/install.sh
script:
- gulp $SCRIPT