1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| sudo: false
| language: node_js
| node_js:
| - "8.5.0"
|
| addons:
| chrome: stable
|
| git:
| depth: 1
|
| before_install:
| - export CHROME_BIN=chromium-browser
| - export DISPLAY=:99.0
| - sh -e /etc/init.d/xvfb start
| - npm install -g npm@~5.3.0
|
| install:
| - npm install
|
| script:
| - npm run test
| - npm run test-coverage
|
| after_success:
| - ./node_modules/.bin/codecov
|
|