Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f4494c4

Browse files
committedMar 19, 2025·
[CI] Use htmltest for link checking
Signed-off-by: Patrice Chalin <[email protected]>
1 parent a69d985 commit f4494c4

File tree

7 files changed

+707
-3
lines changed

7 files changed

+707
-3
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
# npm assets
77
node_modules/
88
package-lock.json
9+
10+
/tmp

‎.htmltest.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# cSpell:ignore github
2+
CacheExpires: 9000h # ~ 12 months
3+
DirectoryPath: build
4+
TestFilesConcurrently: true
5+
IgnoreDirs:
6+
IgnoreInternalURLs: # list of paths
7+
IgnoreURLs: # list of regexes of URLs or path to be ignored
8+
- \?no-link-check
9+
# FIXME: temporary ignore rules
10+
- assistance\.md
11+
- LICENSE
12+
- /analyses/

‎Makefile

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# cSpell:ignore htmltest refcache
2+
# Set REFCACHE to another value to disable htmltest refcache-file manipulation
3+
REFCACHE?=refcache
4+
HTMLTEST_DIR=tmp
5+
HTMLTEST?=htmltest # Specify as make arg if different
6+
HTMLTEST_ARGS?=--log-level 1
7+
LINK_CACHE_FILE?=refcache.json
8+
LINK_CACHE_FILE_DEST_DIR?=static
9+
LINK_CACHE_FILE_SRC_DIR?=$(HTMLTEST_DIR)/.htmltest
10+
11+
# Use $(HTMLTEST) in PATH, if available; otherwise, we'll get a copy
12+
ifeq (, $(shell which $(HTMLTEST)))
13+
override HTMLTEST=$(HTMLTEST_DIR)/bin/htmltest
14+
ifeq (, $(shell which $(HTMLTEST)))
15+
GET_LINK_CHECKER_IF_NEEDED=get-link-checker
16+
endif
17+
endif
18+
19+
default:
20+
@echo "Make what? Target list:\n"
21+
@make -rpn | grep '^[a-z]\S*:' | sed 's/://' | sort
22+
23+
$(LINK_CACHE_FILE_SRC_DIR):
24+
mkdir -p $(LINK_CACHE_FILE_SRC_DIR)
25+
26+
$(LINK_CACHE_FILE_DEST_DIR)/$(LINK_CACHE_FILE):
27+
mkdir -p $(LINK_CACHE_FILE_DEST_DIR)
28+
echo '{}' > $(LINK_CACHE_FILE_DEST_DIR)/$(LINK_CACHE_FILE)
29+
30+
refcache-restore: $(LINK_CACHE_FILE_DEST_DIR)/$(LINK_CACHE_FILE) $(LINK_CACHE_FILE_SRC_DIR)
31+
ifeq (refcache, $(REFCACHE))
32+
cp $(LINK_CACHE_FILE_DEST_DIR)/$(LINK_CACHE_FILE) $(LINK_CACHE_FILE_SRC_DIR)/
33+
else
34+
@echo "SKIPPING refcache-restore"
35+
endif
36+
37+
refcache-save:
38+
ifeq (refcache, $(REFCACHE))
39+
cp $(LINK_CACHE_FILE_SRC_DIR)/$(LINK_CACHE_FILE) $(LINK_CACHE_FILE_DEST_DIR)/
40+
npx prettier --prose-wrap=always --write $(LINK_CACHE_FILE_DEST_DIR)/$(LINK_CACHE_FILE)
41+
else
42+
@echo "SKIPPING refcache-save"
43+
endif
44+
45+
check-links: $(GET_LINK_CHECKER_IF_NEEDED) \
46+
refcache-restore check-links-only refcache-save
47+
48+
check-links-only:
49+
$(HTMLTEST) $(HTMLTEST_ARGS)
50+
51+
clean:
52+
rm -rf $(HTMLTEST_DIR) public/* resources
53+
54+
get-link-checker:
55+
rm -Rf $(HTMLTEST_DIR)/bin
56+
curl https://htmltest.wjdp.uk | bash -s -- -b $(HTMLTEST_DIR)/bin

‎docs/analysis/howto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,5 +217,5 @@ Create issues in the project documentation GitHub repository for:
217217
[analyses]: ../../analyses/
218218
[criteria]: ./criteria.md
219219
[project maturity level]: https://www.cncf.io/project-metrics
220-
[templates]: ./templates/
220+
[templates]: ./templates/README.md
221221
[issues list]: ./templates/issues-list.md

‎docusaurus.config.ts

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ const config: Config = {
2424
onBrokenLinks: 'warn', // TODO: 'error' or 'throw' once we've fixed all links
2525
onBrokenMarkdownLinks: 'warn',
2626

27+
trailingSlash: true,
28+
2729
i18n: {
2830
defaultLocale: 'en',
2931
locales: ['en'],

‎package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"_check:format:any": "npx prettier --check --ignore-path ''",
77
"_check:format:delta": "npm run _check:format:any -- $(npm run -s _list:git:delta)",
88
"_check:format": "npx prettier --check .",
9-
"_check:links": "npx markdown-link-check --config .markdown-link-check.json",
9+
"_check:links": "make --keep-going check-links",
10+
"_check:links-md": "bash -c 'for f in *.md `find analyses -name \"*.md\"`; do npx markdown-link-check@3.12.2 --config .markdown-link-check.json -p -v $f || exit 1; done'",
1011
"_check:markdown:all": "npm run -s _list:check:md | xargs -I {} -P 4 npx -p markdownlint-cli markdownlint -c .markdownlint.yaml {}",
1112
"_check:markdown:delta": "npm run -s _list:git:delta | xargs -I {} npx -p markdownlint-cli markdownlint -c .markdownlint.yaml {}",
1213
"_check:markdown:1": "npx -p markdownlint-cli markdownlint -c .markdownlint.yaml",
@@ -16,12 +17,13 @@
1617
"_list:check:*": "npm run --loglevel=warn | grep -Ee '^\\s*check:[^:]+$'",
1718
"_list:fix:*": "npm run --loglevel=warn | grep -Ee '^\\s*fix:[^:]+$' | grep -v 'fix:all'",
1819
"check:format": "npm run _check:format || (echo '[help] Run: npm run fix:format'; exit 1)",
19-
"check:links": "bash -c 'for f in *.md `find docs analyses -name \"*.md\"`; do npx markdown-link-check@3.12.2 --config .markdown-link-check.json -p -v $f || exit 1; done'",
20+
"check:links": "npm run _check:links",
2021
"check:markdown": "npm run _check:markdown:all",
2122
"check:spelling": "npx cspell --no-progress -c .cspell.yml analyses docs *.md",
2223
"check": "npm run seq -- $(npm run -s _list:check:*)",
2324
"fix:format": "npm run _check:format -- --write",
2425
"fix": "npm run seq -- $(npm -s run _list:fix:*)",
26+
"precheck:links": "npm run build",
2527
"seq": "bash -c 'for cmd in \"$@\"; do npm run $cmd || exit 1; done' - ",
2628
"test": "npm run check",
2729
"update:pkgs": "npx npm-check-updates -u",

‎static/refcache.json

+630
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.