https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 5d2128d9859503fdae4a929a45a258b28c152ba2 authored by Nicolas Thouvenin on 07 March 2019, 16:20:45 UTC
9.5.5
Tip revision: 5d2128d
.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