chore(qa): harden nightly pipeline jobs (browser install, depcheck ignores, link-check robustness)
Some checks failed
🚀 Build & Deploy / 🧪 QA (push) Has been cancelled
🚀 Build & Deploy / 🏗️ Build (push) Has been cancelled
🚀 Build & Deploy / 🚀 Deploy (push) Has been cancelled
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
🚀 Build & Deploy / 🔔 Notify (push) Has been cancelled
🚀 Build & Deploy / 🔍 Prepare (push) Has been cancelled
Nightly QA (Inlined) / 🏗️ Prepare & Install (push) Successful in 31s
Nightly QA (Inlined) / 🔍 Static Analysis (push) Failing after 1m6s
Nightly QA (Inlined) / 🧪 Maintenance & Links (push) Successful in 45s
Nightly QA (Inlined) / ♿ Accessibility (push) Successful in 2m15s
Nightly QA (Inlined) / 🎭 Lighthouse (push) Failing after 1m56s
Nightly QA (Inlined) / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-05-03 11:31:05 +02:00
parent cc728410c2
commit e0cdac971f
2 changed files with 12 additions and 21 deletions

View File

@@ -1,14 +0,0 @@
import * as cheerio from "cheerio";
import * as fs from "fs";
const file = process.argv[2];
const html = fs.readFileSync(file, "utf8");
const $ = cheerio.load(html);
$("a").each((i, el) => {
const text = $(el).text().trim();
const label = $(el).attr("aria-label");
if (!text && !label) {
console.log(`Empty anchor found: ${$(el).toString()}`);
}
});