https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 53c19a59e7ca2860b452dda235f5e071f9a5ecca authored by François Parmentier on 07 July 2017, 12:11:36 UTC
:bookmark: 7.16.1: Various improvements
Tip revision: 53c19a5
.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