element-web/.travis.yml

37 lines
1.0 KiB
YAML
Raw Normal View History

# 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.
#
# unfortunately we do temporarily require sudo as a workaround for
# https://github.com/travis-ci/travis-ci/issues/8836
sudo: required
2016-08-23 16:05:50 +02:00
language: node_js
node_js:
- node # Latest stable version of nodejs.
addons:
chrome: stable
2017-01-12 18:09:49 +01:00
install:
- npm install
- ./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
install:
- npm install
- ./scripts/travis/install-deps.sh
- 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:
- ./scripts/travis/test-riot.sh
- name: Unit Tests
script:
- npm run test