Skip to content
Snippets Groups Projects
Commit 51721346 authored by Arkerthan's avatar Arkerthan
Browse files

Disable CI again because GitLab cannot compare code quality between repositories

parent 11b8b680
No related branches found
No related tags found
No related merge requests found
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment