SymphonyElectron/.travis.yml
Vishwas Shashidhar 42c8b1e0a7 add travis config back
Signed-off-by: Vishwas Shashidhar <vishwas.shashidhar@symphony.com>
2020-02-13 23:13:46 +05:30

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