test:
  image: node:alpine
  services:
  - couchdb
  variables:
    COUCHDB_USER: admin
    COUCHDB_PASSWORD: password
  script:
  - npm install
  - npm audit
  - npm test
