21 lines
322 B
YAML
21 lines
322 B
YAML
|
sudo: required
|
||
|
dist: trusty
|
||
|
addons:
|
||
|
apt:
|
||
|
sources:
|
||
|
- google-chrome
|
||
|
packages:
|
||
|
- google-chrome-stable
|
||
|
sonarcloud:
|
||
|
organization: "sartography"
|
||
|
language: node_js
|
||
|
node_js:
|
||
|
- 12
|
||
|
before_script:
|
||
|
- export DISPLAY=:99.0
|
||
|
- sh -e /etc/init.d/xvfb start
|
||
|
install:
|
||
|
- npm install
|
||
|
script:
|
||
|
- npm run ci
|