image: node:latest cache: paths: - node_modules/ stages: - lint - test eslint: stage: lint script: - yarn install - yarn eslint src testing: stage: test script: - yarn test --silent