๐ฏ ๐ฃ๐ผ๐๐ ๐๐ฒ๐ฝ๐น๐ผ๐ ๐๐ต๐ฒ๐ฐ๐ธ๐ ๐๐ผ๐ฟ ๐๐น๐ผ๐๐ฑ๐ณ๐น๐ฎ๐ฟ๐ฒ ๐ฃ๐ฎ๐ด๐ฒ๐
I spent two weeks fixing production bugs. One rule blocked my sitemap. Another caused a race condition. I now run three fast checks after every build.
- Sitemap health: I verify sitemap-index.xml returns a 200 status. I check sitemap-0.xml for a minimum URL count. This catches silent data pipeline failures.
- IndexNow: I run a script to notify search engines. I trigger this after the build is live. A 403 error shows my key file is missing.
- Lighthouse: I run this every Monday. I track performance and layout shifts. I use this to monitor trends.
I do not use uptime tools. I do not use API checks. My sites are static HTML. These three steps cover my risks.
Source: https://dev.to/morinaga/three-post-deploy-checks-i-run-after-every-cloudflare-pages-build-4mel