We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 169fc2b commit b8a505dCopy full SHA for b8a505d
.github/workflows/test-database.yaml
@@ -26,11 +26,12 @@ jobs:
26
- name: Install Dependencies
27
run: pnpm install --frozen-lockfile
28
- name: Get supabase version
29
- run: echo "SUPABASE_VERSION=$(supabase --version)" >> $GITHUB_ENV
+ working-directory: ./packages/database
30
+ run: echo "SUPABASE_VERSION=$(./node_modules/.bin/supabase --version)" >> $GITHUB_ENV
31
- name: Cache Docker images.
32
uses: ScribeMD/docker-cache@0.5.0
33
with:
- key: docker-${{ runner.os }}-$SUPABASE_VERSION
34
+ key: docker-${{ runner.os }}-${{ env.SUPABASE_VERSION }}
35
- name: Setup database
36
working-directory: ./packages/database
37
run: pnpm run setup
0 commit comments