1 | sudo: required
|
2 | dist: trusty
|
3 | addons:
|
4 | apt:
|
5 | sources:
|
6 | - google-chrome
|
7 | packages:
|
8 | - google-chrome-stable
|
9 | language: node_js
|
10 | node_js:
|
11 | - node
|
12 | script:
|
13 | - npm run ci
|
14 | before_script:
|
15 | - export DISPLAY=:99.0
|
16 | - sh -e /etc/init.d/xvfb start
|
17 | - sleep 3
|
18 | cache:
|
19 | yarn: true
|
20 | notifications:
|
21 | email: false
|
22 | after_success:
|
23 | - npm run codecov
|