Files
AngularTicTacToe/.travis.yml
2019-11-18 06:10:55 +02:00

23 lines
286 B
YAML

os:
- linux
- osx
language: node_js
node_js:
- '12'
- '11'
- '10'
dist: xenial
sudo: required
services:
- xvfb
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