playwright/.travis.yml

35 lines
668 B
YAML
Raw Normal View History

2019-11-19 05:18:28 +03:00
language: node_js
2019-12-06 02:18:55 +03:00
dist: bionic
2019-11-19 05:18:28 +03:00
addons:
apt:
packages:
2020-01-23 01:53:36 +03:00
# These are required to run webkit
- libwoff1
- libopus0
- libwebp6
- libwebpdemux2
- libenchant1c2a
- libgudev-1.0-0
- libsecret-1-0
- libhyphen0
- libgdk-pixbuf2.0-0
2020-01-23 01:53:36 +03:00
- libegl1
- libgles2
- libevent-2.1-6
- libnotify4
- libxslt1.1
- xvfb
2019-11-19 05:18:28 +03:00
notifications:
email: false
cache:
directories:
- node_modules
script:
2019-12-06 00:04:41 +03:00
- "npm run build"
2020-01-23 01:53:36 +03:00
- "xvfb-run --auto-servernum npm run unit"
- "xvfb-run --auto-servernum npm run funit"
- "xvfb-run --auto-servernum npm run wunit"
2019-11-19 05:18:28 +03:00
jobs:
include:
2020-01-23 01:53:36 +03:00
- node_js: "12"