From a857dbae4415e04623054f80ff30d2b19bd5c512 Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues Date: Thu, 20 Nov 2025 10:18:15 +0100 Subject: [PATCH 1/2] run biome in the ci --- .github/workflows/biome.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/biome.yml diff --git a/.github/workflows/biome.yml b/.github/workflows/biome.yml new file mode 100644 index 00000000..14df39f4 --- /dev/null +++ b/.github/workflows/biome.yml @@ -0,0 +1,19 @@ +name: Code Quality + +on: + pull_request: + +jobs: + quality: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Checkout + uses: actions/checkout@v5 + with: + persist-credentials: false + - name: Setup Biome + uses: biomejs/setup-biome@v2 + - name: Run Biome + run: biome ci . \ No newline at end of file From 097c7057d59f4ae2177ca3bcff4155868acccb0e Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues Date: Thu, 20 Nov 2025 10:22:30 +0100 Subject: [PATCH 2/2] fix format --- packages/mcp-server-supabase/src/platform/types.ts | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/packages/mcp-server-supabase/src/platform/types.ts b/packages/mcp-server-supabase/src/platform/types.ts index 0d7a8966..9d0610e9 100644 --- a/packages/mcp-server-supabase/src/platform/types.ts +++ b/packages/mcp-server-supabase/src/platform/types.ts @@ -234,10 +234,7 @@ export type DevelopmentOperations = { export type StorageOperations = { getStorageConfig(projectId: string): Promise; - updateStorageConfig( - projectId: string, - config: StorageConfig - ): Promise; + updateStorageConfig(projectId: string, config: StorageConfig): Promise; listAllBuckets(projectId: string): Promise; }; @@ -249,10 +246,7 @@ export type BranchingOperations = { ): Promise; deleteBranch(branchId: string): Promise; mergeBranch(branchId: string): Promise; - resetBranch( - branchId: string, - options: ResetBranchOptions - ): Promise; + resetBranch(branchId: string, options: ResetBranchOptions): Promise; rebaseBranch(branchId: string): Promise; };