18
18
- singlestore-prefixed
19
19
- singlestore-custom
20
20
- neon-http
21
+ - neon-http-batch
21
22
- neon-serverless
22
23
- other
23
24
runs-on : ubuntu-20.04
@@ -138,7 +139,7 @@ jobs:
138
139
PG_POSTGIS_CONNECTION_STRING : postgres://postgres:postgres@localhost:54322/drizzle
139
140
MYSQL_CONNECTION_STRING : mysql://root:root@localhost:33306/drizzle
140
141
PLANETSCALE_CONNECTION_STRING : ${{ secrets.PLANETSCALE_CONNECTION_STRING }}
141
- # NEON_CONNECTION_STRING: ${{ secrets.NEON_CONNECTION_STRING }}
142
+ NEON_CONNECTION_STRING : ${{ secrets.NEON_CONNECTION_STRING }}
142
143
NEON_HTTP_CONNECTION_STRING :
postgres://postgres:[email protected] :5432/postgres
143
144
NEON_SERVERLESS_CONNECTION_STRING : postgres://postgres:postgres@localhost:5445/postgres
144
145
TIDB_CONNECTION_STRING : ${{ secrets.TIDB_CONNECTION_STRING }}
@@ -190,6 +191,12 @@ jobs:
190
191
docker compose -f docker-neon.yml down
191
192
;;
192
193
194
+ neon-http-batch)
195
+ docker compose -f docker-neon.yml up -d
196
+ pnpm vitest run tests/pg/neon-http-batch.test.ts
197
+ docker compose -f docker-neon.yml down
198
+ ;;
199
+
193
200
neon-serverless)
194
201
docker compose -f docker-neon.yml up -d
195
202
pnpm vitest run tests/pg/neon-serverless.test.ts
@@ -206,6 +213,7 @@ jobs:
206
213
--exclude tests/singlestore/singlestore-prefixed.test.ts \
207
214
--exclude tests/singlestore/singlestore-custom.test.ts \
208
215
--exclude tests/pg/neon-http.test.ts \
216
+ --exclude tests/pg/neon-http-batch.test.ts \
209
217
--exclude tests/pg/neon-serverless.test.ts
210
218
;;
211
219
0 commit comments