We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39575cf commit 09e1b18Copy full SHA for 09e1b18
template/.gitlab-ci.yml
@@ -44,3 +44,16 @@ cffconvert:
44
script:
45
# Check whether the citation metadata from CITATION.cff is valid
46
- cffconvert --validate
47
+
48
+markdown-link-check:
49
+ stage: test
50
+ image:
51
+ name: "lycheeverse/lychee"
52
+ entrypoint: [""]
53
+ rules:
54
+ # Run on a Merge Request to the default branch
55
+ - if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH
56
+ # Run on new commits to the default branch
57
+ - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
58
+ script:
59
+ - lychee .
0 commit comments