mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-23 03:31:56 +00:00
38 lines
488 B
YAML
38 lines
488 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
os:
|
|
- osx
|
|
- linux
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- build-essential
|
|
- libxext-dev
|
|
- libxtst-dev
|
|
- libxkbfile-dev
|
|
|
|
language: node_js
|
|
node_js:
|
|
- '6'
|
|
|
|
before_install:
|
|
- ./scripts/travis-xvfb.sh
|
|
- npm install -g gulp
|
|
- npm install
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- app/node_modules
|
|
|
|
script:
|
|
- npm run travis
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://zulip.org/zulipbot/travis
|
|
on_success: always
|
|
on_failure: always
|