From 93f4ec369507c913da13af81f4a6b33c82e8d70b Mon Sep 17 00:00:00 2001 From: Vladimir Grichina Date: Fri, 7 Jun 2019 19:17:57 -0700 Subject: [PATCH] Use yarn for GitLab --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 14ee5e76..ad86352b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ cache: install_dependencies: stage: build script: - - npm install + - yarn artifacts: paths: - node_modules/ @@ -19,4 +19,4 @@ install_dependencies: run_tests: stage: test script: - - npm test + - yarn test