diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c54c83912b6ca7a32c38c2ce59267728573c09b1..3fa5d98139c5be1c43b0dbdd68d46a2615fd79ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,5 @@ stages: - spellcheck - - lint aspell: stage: spellcheck @@ -31,21 +30,3 @@ aspell: rules: - if: '$CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "merge_request_event"' allow_failure: false - - -prose-lint: - stage: lint - image: golang:latest - before_script: - # Install Vale - - curl -fsSL https://github.com/errata-ai/vale/archive/refs/tags/v3.9.1.tar.gz | tar xvz - - ls - - mv vale /usr/local/bin/vale - # Verify installation - - vale --version - script: - # Run Vale on all Markdown files in the repository - - vale --output=CLI --glob='*.md' . - rules: - - if: '$CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "merge_request_event"' - allow_failure: false