From 99742a855e8d54359c0bfed884d04f1457f0f34c Mon Sep 17 00:00:00 2001 From: Vladimir Roudakov <v_roudakov@yahoo.com> Date: Fri, 17 May 2024 14:57:36 +1000 Subject: [PATCH] Issue #3431615: Automated Drupal 11 compatibility fixes for lazy. Added CI. --- .gitlab-ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f29f716 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +include: + - project: $_GITLAB_TEMPLATES_REPO + ref: $_GITLAB_TEMPLATES_REF + file: + - '/includes/include.drupalci.main.yml' + - '/includes/include.drupalci.variables.yml' + - '/includes/include.drupalci.workflows.yml' + +variables: + _TARGET_CORE: "^10.3 || ^11" +eslint: + allow_failure: false +phpcs: + allow_failure: false +phpstan: + allow_failure: false +phpstan (next minor): + allow_failure: false +phpstan (next major): + allow_failure: false +phpunit (next minor): + allow_failure: false +phpunit (next major): + allow_failure: false +stylelint: + allow_failure: false -- GitLab