Skip to content

Commit

Permalink
chore: update CI to test against node v20
Browse files Browse the repository at this point in the history
No change to logic. This updates GitHub actions CI to test on node v19
and v20.
  • Loading branch information
nfischer committed Jun 26, 2023
1 parent a3a7e74 commit c10b4dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- 16
- 17
- 18
- 19
- 20
os:
- ubuntu-latest
- macos-latest
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-node-support.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var shell = require('..');

// This is the authoritative list of supported node versions.
var MIN_NODE_VERSION = 8;
var MAX_NODE_VERSION = 18;
var MAX_NODE_VERSION = 20;

function checkReadme(minNodeVersion) {
var start = '<!-- start minVersion -->';
Expand Down

0 comments on commit c10b4dd

Please sign in to comment.