https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 1d7e0d69442672f3b5879aed23760701a419e7e7 authored by Yannick Schurter on 11 February 2019, 11:52:53 UTC
9.4.8
Tip revision: 1d7e0d6
.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