chore: add diagnostic logs to smoke test and bump to rc.14
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 8s
Build & Deploy / 🧪 QA (push) Successful in 1m14s
Build & Deploy / 🏗️ Build (push) Successful in 2m57s
Build & Deploy / 🚀 Deploy (push) Successful in 16s
Build & Deploy / 🧪 Post-Deploy Verification (push) Failing after 1m1s
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-05-06 15:09:37 +02:00
parent a782fdfe53
commit 94627ba20e
2 changed files with 14 additions and 2 deletions

View File

@@ -113,7 +113,7 @@
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"version": "2.3.22-rc.13",
"version": "2.3.22-rc.14",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",

View File

@@ -44,7 +44,19 @@ async function run() {
urls.map(async (url) => {
try {
const res = await fetch(url, { method: 'HEAD' });
if (res.status >= 400) broken.push(`${url} (Status: ${res.status})`);
if (res.status >= 400) {
// Diagnostic: check if the raw source is available
const rawUrlMatch = url.match(/[?&]url=([^&]+)/);
if (rawUrlMatch) {
const rawPath = decodeURIComponent(rawUrlMatch[1]);
const baseUrl = new URL(url).origin;
const rawUrl = `${baseUrl}${rawPath}`;
const rawRes = await fetch(rawUrl, { method: 'HEAD' });
broken.push(`${url} (Status: ${res.status}, Raw Status: ${rawRes.status})`);
} else {
broken.push(`${url} (Status: ${res.status})`);
}
}
} catch (e) {
broken.push(`${url} (Fetch failed)`);
}