From d2521ccceac5e3ce77e33b1d9e85d7d5c58ed345 Mon Sep 17 00:00:00 2001 From: Christopher Krawietz <krawietz@new-communication.de> Date: Thu, 3 Jun 2021 13:40:09 +0200 Subject: [PATCH] =?UTF-8?q?[BUG]=20=E2=80=94=20use=20lts=20node=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c010653..7818868 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: linting: stage: linting - image: node:14.15.1 + image: node:lts cache: paths: - node_modules/ @@ -14,13 +14,13 @@ linting: deploy: stage: deploy - image: node:14.15.1 - cache: - paths: - - node_modules/ + image: node:lts +# cache: +# paths: +# - node_modules/ script: + - yarn cache verify - yarn install - - rm -rf public - yarn build artifacts: expire_in: 1 day -- GitLab