20 lines
278 B
YAML
20 lines
278 B
YAML
language: node_js
|
|
node_js:
|
|
- 6
|
|
os: linux
|
|
cache:
|
|
yarn: true
|
|
branches:
|
|
only:
|
|
- master
|
|
before_install:
|
|
- export CHROME_BIN=chromium-browser
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
install:
|
|
- |
|
|
yarn install
|
|
script:
|
|
- |
|
|
npm run lint && npm run test
|