Skip to content

Commit

Permalink
Added support for Node 20
Browse files Browse the repository at this point in the history
ref https://linear.app/tryghost/issue/ENG-765/add-support-for-node-20

- this adds support for Node 20 because it is EOL and is suitable for
  our support policy
  • Loading branch information
daniellockyer committed Mar 19, 2024
1 parent 64fbe53 commit 3412812
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
strategy:
matrix:
node: [ '16.13.0', '18.12.1' ]
node: [ '16.13.0', '18.12.1', '20.11.1' ]
env:
- DB: sqlite3
NODE_ENV: testing
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -44,7 +44,7 @@
"knex-migrator-rollback": "./bin/knex-migrator-rollback"
},
"engines": {
"node": "^14.18.0 || ^16.13.0 || ^18.12.1"
"node": "^14.18.0 || ^16.13.0 || ^18.12.1 || ^20.11.1"
},
"dependencies": {
"@tryghost/database-info": "0.3.21",
Expand Down

0 comments on commit 3412812

Please sign in to comment.