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 Aug 5, 2023
1 parent 7442e02 commit e079361
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
Expand Up @@ -23,6 +23,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
Expand Up @@ -9,7 +9,7 @@ var shell = require('shelljs');

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

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

0 comments on commit e079361

Please sign in to comment.