From 5bfc57d771e30310f4b7031949fd8a689a347118 Mon Sep 17 00:00:00 2001 From: JY Tan Date: Fri, 20 Feb 2026 20:57:10 -0800 Subject: [PATCH] Commit --- .github/workflows/e2e.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 7b9f2f59..57c2c368 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -4,11 +4,11 @@ on: push: branches: [main] paths: - - 'src/**' + - "src/**" pull_request: branches: [main] paths: - - 'src/**' + - "src/**" workflow_dispatch: {} jobs: @@ -19,7 +19,9 @@ jobs: strategy: max-parallel: 6 matrix: - library: [fetch, firestore, grpc, http, ioredis, mysql, mysql2, nextjs, pg, postgres, prisma, upstash-redis-js] + library: + # Exclude upstash-redis-js for now because takes ~15 min. To re-enable when someone needs it. + [fetch, firestore, grpc, http, ioredis, mysql, mysql2, nextjs, pg, postgres, prisma] steps: - name: Checkout uses: actions/checkout@v4