From a8e0a81e552d3d657d9a7dab8e8a26b10199e8b0 Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 19 May 2020 11:08:56 +0100 Subject: [PATCH] Activate runner on merge requests --- .gitlab-ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 90b40a8..9a4871d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,9 +7,17 @@ lint: script: | yarn install yarn lint + only: + - pushes + - merge_requests + - web tsc: stage: build script: | yarn install - tsc -p tsconfig.json -noEmit \ No newline at end of file + tsc -p tsconfig.json -noEmit + only: + - pushes + - merge_requests + - web \ No newline at end of file