Files
AngularTicTacToe/.travis.yml
2020-08-30 15:45:24 +02:00

20 lines
353 B
YAML

os:
- linux
- osx
- windows
language: node_js
node_js:
- 'lts/*'
services:
- xvfb
before_script:
- export DISPLAY=:99.0
install:
- npm set progress=false
- npm install
script:
- ng lint
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then npm run test ; fi
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then npm run e2e ; fi
- npm run build