From 51721346181d9fceb6fabf763c038c80d224b8df Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Tue, 15 Dec 2020 18:00:56 +0100 Subject: [PATCH] Disable CI again because GitLab cannot compare code quality between repositories --- .gitlab-ci.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 248e8c623e7..00000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,21 +0,0 @@ -# only start pipelines if we are on the main branch, at a git tag or a merge request. -include: - - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml' - -stages: - - lint - -eslint: - stage: lint - #image: node:current-alpine3.12 - image: node:12-alpine3.12 - tags: [ docker ] - script: - - npm install - #- npm ci ### should use this for automated testing instead of "npm install", but we need a package-lock.json for it. - - npm install eslint-formatter-gitlab - # > /dev/null 2>&1 || FAILED=true to make error type warnings not fail the job - - npx eslint --format gitlab . > /dev/null 2>&1 || FAILED=true - artifacts: - reports: - codequality: gl-codequality.json -- GitLab