Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,13 @@ jobs:
- run: yarn set version berry
# - run: yarn config set nodeLinker node-modules
- run: yarn init -y
# Yarn Berry 4.14+ disables install scripts by default (yarnpkg/berry#7089).
# The supabase package relies on a postinstall script to fetch its binary,
# so we opt in via YARN_ENABLE_SCRIPTS just for this install step (the
# Yarn analog to pnpm's --allow-build=supabase).
- run: yarn add -D ./supabase-1.28.0.tgz
env:
YARN_ENABLE_SCRIPTS: "true"
- if: ${{ matrix.os != 'windows-latest' }}
run: yarn supabase --version
# Workaround for running extensionless executable on windows
Expand Down
Loading