image: node:14 stages: - lint - test before_script: - npm install lint: stage: lint script: - npm run lint test: stage: test script: - npm test