https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 3abae1199892340ba03c2ad6e9795fc840bed12e authored by Corentin Sardo on 28 August 2019, 13:28:08 UTC
10.0.0
Tip revision: 3abae11
.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