From 10695a8dc5679b91ba12f91c694199a65bc85ad3 Mon Sep 17 00:00:00 2001 From: trivedi-vatsal Date: Sun, 30 Aug 2026 10:08:58 +0530 Subject: [PATCH 1/2] Add .ci.yml so docs Check Runs on ci.openpreflight.xyz. Hosting stays Cloudflare Pages; this is install, link-check, and build only. Co-authored-by: Cursor --- .ci.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .ci.yml diff --git a/.ci.yml b/.ci.yml new file mode 100644 index 0000000..81ac3be --- /dev/null +++ b/.ci.yml @@ -0,0 +1,5 @@ +runtime: node:22 +install: npm ci +test: npm run check-links +build: npm run build +timeout: 15m From 611e21a2f8e26e5f3cfe5164e09d2fb15914a897 Mon Sep 17 00:00:00 2001 From: trivedi-vatsal Date: Sun, 30 Aug 2026 10:11:05 +0530 Subject: [PATCH 2/2] Build before link-check in .ci.yml. check-links reads dist/; running it as test before build always failed. Co-authored-by: Cursor --- .ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.ci.yml b/.ci.yml index 81ac3be..fb00335 100644 --- a/.ci.yml +++ b/.ci.yml @@ -1,5 +1,4 @@ runtime: node:22 install: npm ci -test: npm run check-links -build: npm run build +test: npm run build && npm run check-links timeout: 15m