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-10 06:40:27 +0300
committerEvan Read <eread@gitlab.com>2022-06-10 06:40:27 +0300
commit32b73c290a056fd1f590f8f6ad6b9664da2e3245 (patch)
treed86d020d93d63270adbe848632aec5b8d199a80f /Makefile
parentaf999a0769cb4f3e405b5a212ce5cadbdc31c5e6 (diff)
Add markdownlint to projecteread/add-markdownlint-to-project
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0ea18661..5d18891a 100644
--- a/Makefile
+++ b/Makefile
@@ -143,4 +143,8 @@ yamllint-tests:
@printf "\n$(INFO)INFO: Running yamllint tests..$(INFO_END)\n"
@yamllint .gitlab-ci.yml content/_data
-test: setup brew-bundle rspec-tests jest-tests eslint-tests prettier-tests stylelint-tests hadolint-tests yamllint-tests
+markdownlint-tests:
+ @printf "\n$(INFO)INFO: Running markdownlint tests..$(INFO_END)\n"
+ @yarn markdownlint doc/**/*.md
+
+test: setup brew-bundle rspec-tests jest-tests eslint-tests prettier-tests stylelint-tests hadolint-tests yamllint-tests markdownlint-tests