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