Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes errors in CI #298

Merged
merged 4 commits into from Jul 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions .travis.yml
Expand Up @@ -8,19 +8,22 @@ node_js:
- "8"
- "10"
- "node"
cache:
- directories:
- node_modules
addons:
apt:
packages:
# Required by Electron
# https://github.com/juliangruber/electron-stream#travis
- xvfb
before_script:
# Required by Chrome >42
# https://github.com/electron/electron/issues/1518#issuecomment-97708181
- libgconf-2-4
install:
# Required by Electron
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- npm i -g npm
- npm ci
before_script:
# Building sources
- npm run build
script:
Expand Down