https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 312560efea17434fe16f3f8318059523cb928a70 authored by François Parmentier on 14 June 2017, 14:52:37 UTC
:bookmark: 7.16.0: Add DEFAULT transformer & Improve filter
Tip revision: 312560e
.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