From 9d65c8b2ec3081c797ac2cbbda63193b0ce6409b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 25 Jul 2019 22:33:18 +0200 Subject: [PATCH] ci: Remove path limitation of js60 check The check is supposed to run for all merge requests that touch javascript files, but for some reason I see it's skipped quite often. Better have the test run unnecessarily some times than let bugs through, so remove the limitation. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/647 --- .gitlab-ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 281d75c97..49eb6e32b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,9 +30,6 @@ js_check: - find js -name '*.js' -exec js60 -c -s '{}' ';' 2>&1 | tee $JS_LOG - (! grep -q . $JS_LOG) <<: *only_default - only: - changes: - - js/**/* artifacts: paths: - ${JS_LOG}