From e9791c8b1a5157933423b1d414a1ad4b457faa32 Mon Sep 17 00:00:00 2001 From: Alexander Grund <Flamefire@users.noreply.github.com> Date: Fri, 2 Jul 2021 12:51:18 +0200 Subject: [PATCH] Enable full linting for preview branch --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f59820c26..cd73b9ea1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,14 +44,14 @@ Check links for changed md-files: Lint md-files: stage: test script: docker run --rm ${DOCKER_IMAGE} markdownlint docs - only: [ main ] + only: [ main, preview ] Check links for md-files: stage: test script: - docker run --rm ${DOCKER_IMAGE} bash -c "find docs -type f -name '*.md' | xargs -L1 markdown-link-check --quiet" - only: [ main ] + only: [ main, preview ] Release preview branch: stage: release -- GitLab