image: node stages: - deps - lint - build - test cache: paths: - node_modules/ Deps: stage: deps script: - npm install artifacts: paths: - node_modules/ Lint: stage: lint script: - npm run linter Format: stage: lint script: - npm run format CanBuild: stage: build script: - npm run build Test: stage: test script: - npm run test