mirror of https://github.com/buster-so/buster.git
add supabase and cache
This commit is contained in:
parent
90adda4603
commit
f75cf71bbf
|
@ -103,6 +103,7 @@ jobs:
|
||||||
name: Services Health Check
|
name: Services Health Check
|
||||||
runs-on: blacksmith-4vcpu-ubuntu-2404
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
environment: testing
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
@ -112,6 +113,21 @@ jobs:
|
||||||
with:
|
with:
|
||||||
cache-key: build-lint-unit
|
cache-key: build-lint-unit
|
||||||
|
|
||||||
|
- name: Cache Homebrew packages
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/Library/Caches/Homebrew
|
||||||
|
/usr/local/Cellar/supabase
|
||||||
|
/opt/homebrew/Cellar/supabase
|
||||||
|
key: ${{ runner.os }}-brew-supabase-${{ hashFiles('.github/workflows/build-lint-unit.yml') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-brew-supabase-
|
||||||
|
|
||||||
|
- name: Install Supabase CLI
|
||||||
|
run: |
|
||||||
|
brew install supabase/tap/supabase || brew upgrade supabase
|
||||||
|
|
||||||
- name: Build required packages
|
- name: Build required packages
|
||||||
run: pnpm turbo build --filter="!@buster-app/web"
|
run: pnpm turbo build --filter="!@buster-app/web"
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue