image: node:16@sha256:4c1e36b70fc464b74fb6824f15416f851982d2708412d0076786434b075d9a49

stages:
  - test
  - publish

cache:
  paths:
    - node_modules/

test:
  script:
    - npm ci
    - npm run lint

publish:
  stage: publish
  only:
    - tags
  script:
    - npm run ci-publish
