From d5d504a89f04760fafb7dc97d595817b1fc026d7 Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Fri, 17 Sep 2021 10:00:48 +0200 Subject: [PATCH] Do not execute tests, only lint --- .gitlab-ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e08f7b..32a353a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,9 @@ stages: - - test + - lint - build -test: - stage: test +lint: + stage: lint image: buildkite/puppeteer variables: GIT_STRATEGY: clone @@ -11,8 +11,6 @@ test: - apt-get update && apt-get install -y jq - yarn install script: - - yarn i18n-compile - - yarn test:unit - yarn lint cache: key: front_node_modules -- GitLab