MyCrypto/.travis.yml

37 lines
639 B
YAML
Raw Normal View History

2017-07-04 09:46:31 -07:00
dist: trusty
sudo: required
2017-05-23 00:03:13 -07:00
language: node_js
cache:
directories:
- node_modules
services:
- docker
2017-05-23 00:03:13 -07:00
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- docker pull dternyak/eth-priv-to-addr:latest
install:
- npm install --silent
jobs:
include:
- stage: test
script: npm run test
- stage: test
script: npm run tslint
- stage: test
script: npm run tscheck
- stage: test
script: npm run freezer
- stage: test
script: npm run freezer:validate
notifications:
email:
on_success: never
on_failure: never