From 27d4740e17fe1cbba952efe731c06428e21349ec Mon Sep 17 00:00:00 2001 From: William Morriss Date: Mon, 3 Nov 2025 13:14:31 -0600 Subject: [PATCH 1/3] run full biome check from CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f7e456a..7b89bfba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,8 @@ jobs: run: pnpm run lint - name: Build run: pnpm run build + - name: Biome Check + run: pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true test-synapse-sdk: needs: lint From 075ed537b075c55830789fd43892f18ceade513f Mon Sep 17 00:00:00 2001 From: William Morriss Date: Mon, 3 Nov 2025 15:15:03 -0600 Subject: [PATCH 2/3] run precommit hook directly --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b89bfba..39a9fa5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,8 +41,8 @@ jobs: run: pnpm run lint - name: Build run: pnpm run build - - name: Biome Check - run: pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true + - name: Precommit Hook + run: .git/hooks/pre-commit test-synapse-sdk: needs: lint From 4afafc34c45617ec02662ceb34567dfa90f6c725 Mon Sep 17 00:00:00 2001 From: William Morriss Date: Mon, 3 Nov 2025 15:17:12 -0600 Subject: [PATCH 3/3] Revert "run precommit hook directly" This reverts commit 075ed537b075c55830789fd43892f18ceade513f. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39a9fa5f..7b89bfba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,8 +41,8 @@ jobs: run: pnpm run lint - name: Build run: pnpm run build - - name: Precommit Hook - run: .git/hooks/pre-commit + - name: Biome Check + run: pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true test-synapse-sdk: needs: lint