diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-21 13:49:42 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2020-09-21 13:49:42 +0200 |
| commit | 9fabdd3292b6f065f551f7058f1cb1411097e258 (patch) | |
| tree | 8ca884b8a152c6102e1e385f2231615300f689a0 | |
| parent | 7087b78d362490efd9a9fb3a3c1d973b499d4838 (diff) | |
Run lint and test on merge requests
| -rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 9 insertions, 1 deletions
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 - |