Skip to content

Commit

Permalink
Merge pull request #230 from hypercerts-org/fix/ci_types
Browse files Browse the repository at this point in the history
Hardcode supabase version in github actions
  • Loading branch information
bitbeckers authored Nov 23, 2024
2 parents 7b12af1 + 4f2f75e commit dfb69d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/supabase-ci-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: supabase/setup-cli@v1
with:
version: latest
version: 1.223.10

- name: Start Supabase local development setup
run: supabase start
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/supabase-ci-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: supabase/setup-cli@v1
with:
version: latest
version: 1.223.10

- name: Start Supabase local development setup
run: supabase start
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/supabase-ci-test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: verify supabase types
on:
pull_request:
branches-ignore:
- main
branches:
- develop

env:
Expand All @@ -15,10 +14,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: supabase/setup-cli@v1
with:
version: latest
version: 1.223.10

- name: Start Supabase local development setup
run: supabase start
Expand Down

0 comments on commit dfb69d3

Please sign in to comment.