language: node_js

sudo: required

node_js:
  - '10.16.0'

services:
  - mongodb

addons:
  apt:
    packages:
      # Ubuntu 16+ does not install this dependency by default, so we need to install it ourselves
      - libgconf-2-4

branches:
  only:
    - master

jobs:
  include:
    - stage: mocha
      script: $(npm bin)/mocha
