1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Create .travis.yml

This commit is contained in:
Laurent Cozic 2017-11-13 14:05:49 +00:00 committed by GitHub
parent 3ef95ee868
commit 57575b7f13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
.travis.yml Normal file
View File

@ -0,0 +1,27 @@
matrix:
include:
- os: osx
osx_image: xcode9.0
language: node_js
node_js: "8"
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
cache:
directories:
- node_modules
- $HOME/.cache/electron
- $HOME/.cache/electron-builder
script:
- cd ElectronClient/app
- npm install
- yarn dist
before_cache:
- rm -rf $HOME/.cache/electron-builder/wine
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"