image: node:latest

stages:
  - test

cache:
  paths:
    - node_modules/

test:
  stage: test
  script:
    - npm install
    - npm run lint
    - npm run coverage
  artifacts:
    paths:
      - coverage/
