image: node:12
cache:
  untracked: true
  key: "$CI_COMMIT_REF_NAME"
  paths:
    - node_modules/

stages:
  - eslint

run_eslint:
  stage: eslint
  script:
    - yarn install --frozen-lockfile
    - yarn eslint
