Skip to content

Commit dead429

Browse files
authored
chore: update supported node versions to 14, 16, 18, and 20 (#281)
1 parent eb86148 commit dead429

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
node: [ 14, 16, 18, 19 ]
13+
node: [14, 16, 18, 20]
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-node@v4

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Prerequisites
1010
1. Your application will need to be using Node.js 14 or greater. This package is tested against
11-
[current versions of Node.js][node-versions]: 14, 16, 18, and 19.
11+
[current versions of Node.js][node-versions]: 14, 16, 18, and 20.
1212

1313
2. The `pprof` module has a native component that is used to collect profiles
1414
with v8's CPU and Heap profilers. You may need to install additional

system-test/system_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cd $(dirname $0)
1414
# official releases. https://nodejs.org/en/about/releases/
1515
if [[ -z "$BINARY_HOST" ]]; then
1616
ADDITIONAL_PACKAGES="python3 g++ make"
17-
NODE_VERSIONS=(14 16 18 19)
17+
NODE_VERSIONS=(14 16 18 20)
1818
else
1919
# Tested versions for pre-built binaries are limited based on
2020
# what node-pre-gyp can specify as its target version.

0 commit comments

Comments
 (0)