From 2b49800f3d3a10c4ba69004a30b9f3c1fc9e7f76 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Mon, 17 Nov 2025 17:29:10 -0800 Subject: [PATCH 1/2] fix --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24513be..fbb1125 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,13 @@ jobs: - name: Build run: pnpm -r build + - name: Seed pg and app_user + run: | + # bootstrap admin user NOT REQUIRED FOR supabase + # pgpm admin-users bootstrap --yes + # optional, but added to avoid concurrent attempts to add user + pgpm admin-users add --test --yes + - name: Test ${{ matrix.package }} run: cd ./packages/${{ matrix.package }} && pnpm test From 01c6bc54912f89fbb5c8b2d04e8ad4d4b68bde86 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Mon, 17 Nov 2025 17:36:06 -0800 Subject: [PATCH 2/2] fix --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fbb1125..2a1dec0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: run: pnpm install - name: Install LaunchQL CLI globally - run: npm install -g @launchql/cli@4.13.4 + run: npm install -g pgpm - name: Build run: pnpm -r build diff --git a/README.md b/README.md index 5e8a315..c1fed55 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ pnpm test:watch ## Repository Structure -This is a LaunchQL workspace combining `pnpm` and `lql` for modular Postgres packages: +This is a LaunchQL workspace combining `pnpm` and `pgpm` for modular Postgres packages: - **`packages/supabase`** - Supabase-focused SQL, tests, and helpers - **`packages/hello-world`** - Demo extension showcasing RLS with users/products