https://github.com/anmavrid/webgme-bip
Raw File
Tip revision: f99af3a70664bd674443e1557b91c0df11f99444 authored by Anastasia Mavridou on 06 October 2017, 21:26:10 UTC
Update README.md
Tip revision: f99af3a
.travis.yml
language: node_js
services:
  - mongodb
sudo: false

# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
addons:
  apt:
    sources:
      - mongodb-3.2-precise

    packages:
      - mongodb-org-server

cache:
  directories:
    - node_modules

# git:
#   depth: 5

node_js:
  - "6"

env:
  - TEST_FOLDER=true

before_script:
  - export DISPLAY=:99.0
  - sh -e /etc/init.d/xvfb start
  - npm install webgme

script:
  - "npm test"
back to top