From 39b5379239b0006278b7feb55ab6c8dddd7debd6 Mon Sep 17 00:00:00 2001 From: Christopher Krawietz <krawietz@new-communication.de> Date: Thu, 3 Jun 2021 11:07:27 +0200 Subject: [PATCH] =?UTF-8?q?[TASK]=20=E2=80=94=20changed=20gitlab-ci=20to?= =?UTF-8?q?=20yarn=20execute?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc994ce..baf9430 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,15 +9,15 @@ linting: paths: - node_modules/ script: - - npm install - - npm run-script lint + - yarn install + - yarn lint deploy: stage: deploy image: node:14.15.1 script: - - npm install - - npm run-script build + - yarn install + - yarn build artifacts: paths: - public -- GitLab