We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f7ac5f commit 922c28aCopy full SHA for 922c28a
.github/workflows/ci.yml
@@ -20,6 +20,7 @@ jobs:
20
cache: yarn
21
- run: yarn install --frozen-lockfile
22
- run: yarn lint
23
+
24
build:
25
timeout-minutes: 15
26
needs: lint
@@ -73,4 +74,11 @@ jobs:
73
74
node-version: ${{ matrix.node }}
75
76
- - run: yarn test
77
+ - name: Run tests (skip pg-transaction under Node < 18)
78
+ run: |
79
+ if [[ "${{ matrix.node }}" -lt 18 ]]; then
80
+ echo "Skipping pg-transaction tests on Node.js < 18"
81
+ yarn workspaces foreach -v --exclude pg-transaction --topological-dev run test
82
+ else
83
+ yarn test
84
+ fi
0 commit comments