-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy path.travis.yml
44 lines (40 loc) · 818 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
language: node_js
branches:
only:
- master
- develop
addons:
chrome: stable
firefox: latest
# ensure the correct version of angular-archwizard is installed
# this version depends on the one specified in package.json
before_install:
- bash $TRAVIS_BUILD_DIR/scripts/install-angular-archwizard.sh $TRAVIS_BUILD_DIR
jobs:
include:
# Tests
- stage: Test
os: linux
node_js: "10"
- stage: Test
os: linux
node_js: "12"
- stage: Test
os: linux
node_js: "14"
- stage: Test
os: osx
node_js: "10"
- stage: Test
os: osx
node_js: "12"
- stage: Test
os: osx
node_js: "14"
# Build
- stage: Build
os: linux
node_js: "14"
addons:
chrome: stable
script: npm run build