2017-07-05 21:39:02 +08:00
|
|
|
# we need trusty for the chrome addon
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
# we don't need sudo, so can run in a container, which makes startup much
|
|
|
|
# quicker.
|
2018-01-16 17:38:16 +08:00
|
|
|
#
|
2018-01-16 18:09:11 +08:00
|
|
|
# unfortunately we do temporarily require sudo as a workaround for
|
|
|
|
# https://github.com/travis-ci/travis-ci/issues/8836
|
2018-01-16 17:38:16 +08:00
|
|
|
sudo: required
|
2017-07-05 21:39:02 +08:00
|
|
|
|
2016-08-23 22:05:50 +08:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
|
|
- node # Latest stable version of nodejs.
|
2017-07-05 21:39:02 +08:00
|
|
|
addons:
|
|
|
|
chrome: stable
|
2017-01-13 01:09:49 +08:00
|
|
|
install:
|
2019-01-08 19:21:19 +08:00
|
|
|
- ./scripts/travis/install-deps.sh
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- name: Linting Checks
|
|
|
|
script:
|
|
|
|
# run the linter, but exclude any files known to have errors or warnings.
|
|
|
|
- npm run lintwithexclusions
|
|
|
|
- name: End-to-End Tests
|
2019-01-09 21:36:32 +08:00
|
|
|
if: branch = develop
|
2019-01-08 19:21:19 +08:00
|
|
|
install:
|
|
|
|
- sudo apt-get install build-essential python2.7-dev libffi-dev python-pip python-setuptools sqlite3 libssl-dev python-virtualenv libjpeg-dev libxslt1-dev
|
|
|
|
script:
|
2019-01-09 21:21:45 +08:00
|
|
|
- ./scripts/travis/end-to-end-tests.sh
|
2019-01-08 19:21:19 +08:00
|
|
|
- name: Unit Tests
|
|
|
|
script:
|
2019-01-09 21:21:45 +08:00
|
|
|
- ./scripts/travis/unit-tests.sh
|