From: Ruben Beltran del Rio Date: Mon, 21 Sep 2020 11:49:42 +0000 (+0200) Subject: Run lint and test on merge requests X-Git-Url: https://git.r.bdr.sh/rbdr/cologne/commitdiff_plain/9fabdd3292b6f065f551f7058f1cb1411097e258?ds=inline Run lint and test on merge requests --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9679aec..6c94c32 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,10 @@ +.only-default: &only-default + only: + - branches + - merge_requests + - tags + - refs + image: node:14 variables: @@ -12,11 +19,13 @@ before_script: - npm install lint: + <<: *only-default stage: lint script: - npm run lint test: + <<: *only-default stage: test script: - npm test @@ -37,4 +46,3 @@ quality: only: - merge_requests - master -