ci: validate anchor aliases schema
Some checks failed
CI / build-and-anchors (push) Failing after 1m21s

This commit is contained in:
2026-01-23 09:19:06 +01:00
parent 4294d566ee
commit 15f0679d2e
2 changed files with 7 additions and 2 deletions

View File

@@ -10,9 +10,10 @@
"postbuild": "node scripts/inject-anchor-aliases.mjs && npx pagefind --site dist",
"import": "node scripts/import-docx.mjs",
"apply:ticket": "node scripts/apply-ticket.mjs",
"test": "npm run build && npm run test:anchors && node scripts/check-inline-js.mjs",
"test": "npm run test:aliases && npm run build && npm run test:anchors && node scripts/check-inline-js.mjs",
"test:anchors": "node scripts/check-anchors.mjs",
"test:anchors:update": "node scripts/check-anchors.mjs --update"
"test:anchors:update": "node scripts/check-anchors.mjs --update",
"test:aliases": "node scripts/check-anchor-aliases.mjs"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",