test: exclude external map tiles from smoke test to fix pipeline
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Successful in 1m20s
Build & Deploy / 🏗️ Build (push) Successful in 2m50s
Build & Deploy / 🚀 Deploy (push) Successful in 15s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 55s
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-05-06 17:37:41 +02:00
parent 84da0e57e5
commit 04fb328850
2 changed files with 2 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ async function run() {
const broken: string[] = [];
await Promise.all(
urls.map(async (url) => {
if (url.includes('openstreetmap.org') || url.includes('unpkg.com')) return;
try {
const res = await fetch(url, { method: 'HEAD' });
if (res.status >= 400) {