Skip to content

Commit 861d9d3

Browse files
grdsdevclaude
andcommitted
fix(ci): add missing melos-no-flutter flag to failing workflows
Root cause: All original workflows used "melos bootstrap --no-flutter", but I forgot to set the melos-no-flutter parameter for gotrue, storage_client, realtime_client, and supabase in the refactored versions. Without this flag, melos tries to run "melos bootstrap" which requires Flutter to be installed, but these workflows only install Dart SDK, causing the error: /bin/sh: 1: eval: flutter: not found Fixed by adding melos-no-flutter: true to: - gotrue.yml - storage_client.yml - realtime_client.yml - supabase.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent aa4dbf2 commit 861d9d3

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/gotrue.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ jobs:
3131
needs-docker: true
3232
docker-compose-dir: infra/gotrue
3333
test-concurrency: 1
34+
melos-no-flutter: true

.github/workflows/realtime_client.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ jobs:
2929
package-name: realtime_client
3030
working-directory: packages/realtime_client
3131
test-concurrency: 1
32+
melos-no-flutter: true

.github/workflows/storage_client.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ jobs:
3131
needs-docker: true
3232
docker-compose-dir: infra/storage_client
3333
test-concurrency: 1
34+
melos-no-flutter: true

.github/workflows/supabase.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@ jobs:
3939
package-name: supabase
4040
working-directory: packages/supabase
4141
test-concurrency: 1
42+
melos-no-flutter: true

0 commit comments

Comments
 (0)