image: node:8 stages: - lint - build lint: stage: lint script: - npm install - npm run lint build: stage: build script: - npm install - npm run build