Skip to content

Commit 2632a2d

Browse files
author
Maxime GRIS
committed
fix/ travis ci conf
1 parent 753f828 commit 2632a2d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
os:
22
- linux
33
- osx
4+
- windows
5+
jobs:
6+
fast_finish: true
47
language: node_js
58
node_js:
6-
- '12'
7-
- '10'
8-
dist: xenial
9-
sudo: required
9+
- 'lts/*'
1010
services:
1111
- xvfb
1212
before_script:
@@ -16,6 +16,6 @@ install:
1616
- npm install
1717
script:
1818
- ng lint
19-
- npm run test
20-
- npm run e2e
19+
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then npm run test ; fi
20+
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then npm run e2e ; fi
2121
- npm run build

0 commit comments

Comments
 (0)