image: node:8 stages: - lint - test lint: stage: lint script: - npm install - npm run lint cache: paths: - node_modules/ test: stage: test script: - npm install - npm run test cache: paths: - node_modules/