Skip to content

Commit 97e1802

Browse files
committed
progress
1 parent cf0ecde commit 97e1802

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/pull_request.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -170,18 +170,20 @@ jobs:
170170
- name: Run tests
171171
run: cargo test --workspace
172172

173-
test-js-packages:
173+
test-js-bindings:
174174
name:
175175
Test JS Packages
176176
# use the same image we use for compiling
177-
runs-on: ${{ matrix.os }}
178-
strategy:
179-
matrix:
180-
include:
181-
# use the same images we use for compiling
182-
- os: windows-2022
183-
- os: ubuntu-22.04
184-
- os: macos-14
177+
runs-on: ubuntu-22.04
178+
services:
179+
postgres:
180+
image: postgres:latest
181+
env:
182+
POSTGRES_USER: postgres
183+
POSTGRES_PASSWORD: postgres
184+
POSTGRES_DB: postgres
185+
ports:
186+
- 5432:5432
185187
steps:
186188
- name: Checkout PR branch
187189
uses: actions/checkout@v4
@@ -193,8 +195,6 @@ jobs:
193195
uses: moonrepo/setup-rust@v1
194196
with:
195197
cache-base: main
196-
- name: Setup Postgres
197-
uses: ./.github/actions/setup-postgres
198198
- name: Build main binary
199199
run: cargo build -p pgt_cli --release
200200
- name: Setup Bun

0 commit comments

Comments
 (0)