2017-10-18 14:08:32 +00:00
|
|
|
language: node_js
|
2017-10-19 09:55:06 +00:00
|
|
|
|
2017-10-18 14:08:32 +00:00
|
|
|
node_js:
|
2017-10-19 09:55:06 +00:00
|
|
|
- node
|
2017-10-18 14:08:32 +00:00
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- google-chrome
|
|
|
|
packages:
|
|
|
|
- google-chrome-stable
|
|
|
|
- google-chrome-beta
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- export CHROME_BIN=chromium-browser
|
|
|
|
- export DISPLAY=:99.0
|
|
|
|
- sh -e /etc/init.d/xvfb start
|
|
|
|
|
|
|
|
before_script:
|
2017-10-19 10:06:39 +00:00
|
|
|
- npm install typescript@'>=2.1.0 <2.4.0'
|
2017-10-19 09:55:06 +00:00
|
|
|
- ng build
|
2017-10-18 14:08:32 +00:00
|
|
|
|
|
|
|
script: karma start config/karma.conf.js --single-run
|
2017-10-19 09:55:06 +00:00
|
|
|
|