https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: e49475f3472faaa2a1b790f7bcfbea169fd1b889 authored by Nicolas Thouvenin on 07 March 2019, 10:31:25 UTC
9.5.4
Tip revision: e49475f
.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