https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 9677e5f42ee996b9140f8ebbf120e29031d10a5e authored by Nicolas Thouvenin on 25 October 2017, 15:33:32 UTC
7.22.2
Tip revision: 9677e5f
.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 up -d mongo api
    - sleep 10

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