https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 5c7146b1f5e0c96ba6dbf40f02ab5a9437524819 authored by gildas on 02 May 2017, 11:49:43 UTC
7.10.2
Tip revision: 5c7146b
.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