https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 981f7e6489e5531645bfb0f67165febcb2f3a442 authored by gildas on 16 March 2017, 13:33:08 UTC
6.0.0
Tip revision: 981f7e6
.travis.yml
language: node_js

node_js:
    - "7.7.3"

services: mongodb

env:
    global:
        - CHROME_BIN="chromium-browser"
        - DISPLAY=:99.0
        - NODE_ENV=test

dist: trusty

cache:
    directories:
        - node_modules

before_script:
    - cp ./config/test-dist.js ./config/test.js

before_install:
    - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
    - sh -e /etc/init.d/xvfb start
    - sleep 3

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