From 922c28a13f3f9e4712fa4b4daa30e7805e94f621 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Thu, 17 Jul 2025 22:05:22 -0500 Subject: [PATCH] Lets try skipping pg-transaction on node 16 --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47a51f11..578499cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: cache: yarn - run: yarn install --frozen-lockfile - run: yarn lint + build: timeout-minutes: 15 needs: lint @@ -73,4 +74,11 @@ jobs: node-version: ${{ matrix.node }} cache: yarn - run: yarn install --frozen-lockfile - - run: yarn test + - name: Run tests (skip pg-transaction under Node < 18) + run: | + if [[ "${{ matrix.node }}" -lt 18 ]]; then + echo "Skipping pg-transaction tests on Node.js < 18" + yarn workspaces foreach -v --exclude pg-transaction --topological-dev run test + else + yarn test + fi