-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (32 loc) · 776 Bytes
/
Copy path.travis.yml
File metadata and controls
32 lines (32 loc) · 776 Bytes
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
matrix:
include:
- language: node_js
node_js: 12
sudo: required
dist: trusty
env:
- NAME="Chrome"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start
script: npm run test:ci:chrome
- language: node_js
node_js: 12
sudo: required
dist: trusty
env:
- NAME="Firefox"
addons:
firefox: latest
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start
script: npm run test:ci:firefox