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 | 6a4e70007b1256a8a695ad303669f91125de4351 (patch) | |
| tree | ba67ca9fdb5544f0520c9d89d98f5ce66857ed8c | |
| parent | e3d1591f8fd17252b4519a5047854e1985af8fa1 (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 - |