cache:
  paths:
    - node_modules/

before_script:
  - npm install

test-4:
  stage: test
  image: node:4
  script:
    - npm test

test-latest:
  stage: test
  image: node:latest
  script:
    - npm test
