From 532097c779b99bd9efa09d320d61ca8167cc96d4 Mon Sep 17 00:00:00 2001 From: Laura Liberda Date: Mon, 22 Feb 2021 19:50:15 +0100 Subject: [PATCH] [ci] pipelines and unit tests --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7086ac0..45bfa9b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,10 +3,23 @@ default: before_script: - yarn install +stages: + - build + - test + - lint + build: + stage: build script: - yarn build +test: + stage: test + script: + - yarn test + lint: + stage: lint + allow_failure: true script: - yarn lint