https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: e3ca5cf9f7db5e3429055a16e60d25c3aaff7748 authored by Nicolas Thouvenin on 26 February 2019, 10:08:06 UTC
9.5.2
Tip revision: e3ca5cf
.travis.yml
sudo: required

addons:
    chrome: stable

language: node_js

services:
    - docker

node_js:
    - "10"

env:
    global:
        - NODE_ENV=test
        - EZMASTER_PUBLIC_URL=http://localhost:3000

dist: trusty

cache:
    directories:
        - node_modules
        - ~/.cache/Cypress
        - ~/node_modules/.cache/
        - ~/node_modules/.cache/@babel/register/


install:
    - "make install"

script:
    - make test
back to top