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

Support Node 20 #303

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run test on node 20
HitkoDev committed Sep 16, 2023

Verified

This commit was signed with the committer’s verified signature.
fritzy Nathan Fritz
commit fd7abff3b237329a14c92c7779eb54248b6c0ee2
1 change: 1 addition & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ build: off

environment:
matrix:
- nodejs_version: '20'
- nodejs_version: '18'
- nodejs_version: '16'
- nodejs_version: '14'
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: ["14.x", "16.x", "18.x"]
node-version: ["14.x", "16.x", "18.x", "20.x"]

steps:
- uses: actions/checkout@v2
@@ -29,7 +29,7 @@ jobs:

strategy:
matrix:
node-version: ["14.x", "16.x", "18.x"]
node-version: ["14.x", "16.x", "18.x", "20.x"]

steps:
- uses: actions/checkout@v2
2 changes: 1 addition & 1 deletion lib/loaders/load.mjs
Original file line number Diff line number Diff line change
@@ -32,6 +32,6 @@ export const globalPreload = (context) => {
return `
port.on('message', (m) => {
if (process.connected) process.send(m);
});
}).unref();
`;
};