image: node:18

stages:
  - test

tests:
  stage: test
  script:
    - npm ci
    - npm test
    
