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-08-02 02:02:02 +0300
committerEvan Read <eread@gitlab.com>2022-08-30 03:22:16 +0300
commit8451aa75732c7a4def64f39f7ab194d21e9aaddf (patch)
tree27220ed47a61101b7753268f84b3ada27453dcb6 /.gitlab
parent18121b714288fec6b9cd7a28ffae3bce7a2e4222 (diff)
Add check for identical duplicate entries in global navigationeread/add-duplicate-nav-entry-check
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/ci/test.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab/ci/test.gitlab-ci.yml b/.gitlab/ci/test.gitlab-ci.yml
index fe2ab189..100c9c82 100644
--- a/.gitlab/ci/test.gitlab-ci.yml
+++ b/.gitlab/ci/test.gitlab-ci.yml
@@ -51,6 +51,18 @@ check_index_html:
- exit $(cat output.txt | wc -l)
#
+# Check for identical duplicate entries in global navigation
+#
+
+check_global_nav_entries:
+ extends:
+ - .rules_site_tests
+ needs: []
+ stage: test
+ script:
+ - make check-global-navigation
+
+#
# Run rspec tests
#
rspec: