From 2d8b4261f867603568bd99dd457951f435811db6 Mon Sep 17 00:00:00 2001 From: Vladimir Grichina Date: Fri, 7 Jun 2019 19:54:46 -0700 Subject: [PATCH] Do GitLab build in one stage (looks like should be faster) --- .gitlab-ci.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ad86352b..3ddda749 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,22 +1,10 @@ image: node:10 stages: - - build - test -cache: - paths: - - node_modules/ - -install_dependencies: - stage: build - script: - - yarn - artifacts: - paths: - - node_modules/ - run_tests: stage: test script: + - yarn - yarn test