forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (40 loc) · 802 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
os: linux
dist: xenial
language: node_js
e2e_setup: &e2e_setup
addons:
chrome: stable
firefox: latest-nightly
services:
- xvfb
script: npx run-s test:e2e
stages:
- name: test
- name: deploy
jobs:
fast_finish: true
include:
- <<: *e2e_setup
stage: test
name: 'Test (Linux Node v10)'
node_js: 10
script:
- npm run ci
- <<: *e2e_setup
stage: test
name: 'Test (Linux Node v12)'
node_js: 12
script:
- npm run ci
- <<: *e2e_setup
stage: test
name: 'Test (MacOS Node v12)'
node_js: 12
os: osx
script:
- npm run ci
# Windows on Travis is not stable enough yet
# - <<: *base_setup
# <<: *e2e_setup
# name: 'e2e Tests (Windows)'
# os: windows