https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: e7fc81f393c1d84e26217276fbf6606bce324955 authored by François Parmentier on 09 May 2017, 15:58:44 UTC
:bookmark: Various improvements
Tip revision: e7fc81f
.travis.yml
language: node_js

node_js:
    - "7.8.0"

env:
    global:
        - NODE_ENV=test

dist: trusty

cache:
    directories:
        - node_modules

before_script:
    - cp ./config/test-dist.js ./config/test.js
    - docker-compose -f docker-compose.e2e.yml up -d mongo api hub chrome
    - sleep 10

install:
    - "make --silent install"
back to top