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 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; };