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