Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-06-13 05:02:38 +0300
committerMarcel Amirault <mamirault@gitlab.com>2022-06-13 05:02:38 +0300
commit979558969476a6b3ee3d5fe1eeb99b42d47486e9 (patch)
treecc1ebb4e095c483b11785a35f14b1b4f62adb457 /.gitlab-ci.yml
parentfef84c1eb52354395c42b8087aca5db67b890f2b (diff)
Add Markdownlint to pipeline
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 234a9f07..c160e311 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -354,6 +354,19 @@ yaml_lint:
- yamllint .gitlab-ci.yml content/_data
#
+# Run markdownlint tests
+#
+markdownlint:
+ extends:
+ - .rules_site_tests
+ - .cache_yarn
+ - .yarn
+ needs: []
+ stage: test
+ script:
+ - make markdownlint-tests
+
+#
# Check for broken external links
#
test_external_links: