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 8bdc808 commit 693654fCopy full SHA for 693654f
2 files changed
.github/workflows/presubmit.yaml
@@ -8,7 +8,10 @@ jobs:
8
matrix:
9
node: [20, 22, 24]
10
steps:
11
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: ${{ matrix.node }}
15
- uses: pnpm/action-setup@v2
16
with:
17
version: ^6.24.1
.kokoro/test.sh
@@ -39,7 +39,7 @@ npm test
39
40
# codecov combines coverage across integration and unit tests. Include
41
# the logic below for any environment you wish to collect coverage for:
42
-COVERAGE_NODE=22
+COVERAGE_NODE=24
43
if npx check-node-version@3.3.0 --silent --node $COVERAGE_NODE; then
44
NYC_BIN=./node_modules/nyc/bin/nyc.js
45
if [ -f "$NYC_BIN" ]; then
0 commit comments