https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: ff32add5c166916379434ddfa1c0eae97e1d5d9b authored by Nicolas Thouvenin on 07 January 2019, 14:51:30 UTC
9.4.1
Tip revision: ff32add
.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