Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support for latest NodeJS v20 #11

Merged
merged 13 commits into from
Dec 4, 2023
2 changes: 1 addition & 1 deletion .github/workflows/build-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target-node: [14, 16, 18, 19]
target-node: [14, 16, 18, 19, 20]
target-arch: [x64, arm64]
include:
- target-arch: x64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target-node: [14, 16, 18, 19]
target-node: [14, 16, 18, 19, 20]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-linuxstatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target-node: [14, 16, 18, 19]
target-node: [14, 16, 18, 19, 20]
target-arch: [x64, arm64, armv7]
include:
- target-arch: x64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target-node: [14, 16, 18, 19]
target-node: [14, 16, 18, 19, 20]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target-node: [14, 16, 18, 19]
target-node: [14, 16, 18, 19, 20]
target-arch: [x64, arm64]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false # prevent test to stop if one fails
matrix:
node-version: [12, 14, 16, 18, 19] # match patched node versions
node-version: [12, 14, 16, 18, 19, 20] # match patched node versions
os: [ubuntu-latest] # Skip macos-latest, windows-latest for now

runs-on: ${{ matrix.os }}
Expand Down
5 changes: 5 additions & 0 deletions lib/verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ const script = `
} else
if (modules === 111) {
// no cpu features anymore
} else
if (modules === 115) {
// no cpu features anymore
} else {
assert(false, modules);
}
Expand Down Expand Up @@ -91,6 +94,8 @@ const script = `
if (modules === 108) {
} else
if (modules === 111) {
} else
if (modules === 115) {
} else {
assert(false, modules);
}
Expand Down
Loading