From d27943fa782b8a069affb4f1b9438a173597eea6 Mon Sep 17 00:00:00 2001 From: Harry Phan Date: Sun, 26 Jul 2026 08:05:30 +0700 Subject: [PATCH] ci: make biome lint advisory (non-blocking) --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39d2604..93775b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,5 +28,9 @@ jobs: - name: Build (All) run: npm run build + # Advisory for now: the repo carries a large pre-existing biome backlog + # (formatting, import order, a11y) unrelated to most PRs. Keep the report + # visible in the logs without failing the build until it's cleaned up. - name: Lint and Format Code run: npx @biomejs/biome ci . + continue-on-error: true