mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-01 21:19:12 -06:00
42c8b1e0a7
Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>
35 lines
395 B
YAML
35 lines
395 B
YAML
env:
|
|
global:
|
|
- ELECTRON_QA="true"
|
|
- npm config set package-lock false
|
|
|
|
os:
|
|
- osx
|
|
- windows
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- '11'
|
|
|
|
addons:
|
|
chrome: stable
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
|
|
|
|
install:
|
|
- npm install
|
|
|
|
script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|