Skip to content

Commit 05784cf

Browse files
authored
ci: exclude upstash-redis-js from e2e test runs (#122)
1 parent 4e0632b commit 05784cf

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'src/**'
7+
- "src/**"
88
pull_request:
99
branches: [main]
1010
paths:
11-
- 'src/**'
11+
- "src/**"
1212
workflow_dispatch: {}
1313

1414
jobs:
@@ -19,7 +19,9 @@ jobs:
1919
strategy:
2020
max-parallel: 6
2121
matrix:
22-
library: [fetch, firestore, grpc, http, ioredis, mysql, mysql2, nextjs, pg, postgres, prisma, upstash-redis-js]
22+
library:
23+
# Exclude upstash-redis-js for now because takes ~15 min. To re-enable when someone needs it.
24+
[fetch, firestore, grpc, http, ioredis, mysql, mysql2, nextjs, pg, postgres, prisma]
2325
steps:
2426
- name: Checkout
2527
uses: actions/checkout@v4

0 commit comments

Comments
 (0)