diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6fdcf8c36..bed1c2b04 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,18 +11,14 @@ cache: - node_modules/ stages: - - install + - deps - test - build - deploy -install-dependencies: - stage: install - script: - - yarn install --ignore-scripts - artifacts: - paths: - - node_modules/ +deps: + stage: deps + script: yarn install --ignore-scripts lint-js: stage: test