Files
AngularTicTacToe/.travis.yml
2019-04-14 13:33:08 +02:00

20 lines
271 B
YAML

language: node_js
node_js:
- '10'
dist: xenial
sudo: required
services:
- xvfb
addons:
chrome: stable
before_script:
- export DISPLAY=:99.0
install:
- npm set progress=false
- npm install
script:
- ng lint
- npm run test
- npm run e2e
- npm run build