From 54838e5b877539d7005e89aac0caa363d524df65 Mon Sep 17 00:00:00 2001 From: Erik Taubeneck Date: Mon, 17 Jun 2024 20:46:01 -0700 Subject: [PATCH] add --workdir to supabase commands in github actions --- .github/workflows/pre-commit.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index e2b5caa..3fe158e 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -16,9 +16,9 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - uses: supabase/setup-cli@v1 - - run: supabase init - - run: supabase start - - run: supabase db reset + - run: supabase init --workdir server + - run: supabase start --workdir server + - run: supabase db reset --workdir server - name: Install dependencies run: |