Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,18 @@ jobs:
run: pnpm install

- name: Install LaunchQL CLI globally
run: npm install -g @launchql/[email protected]
run: npm install -g pgpm

- 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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down