Skip to content

Commit

Permalink
feat: drop node versions less than 18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node versions less than 18.0.0 are no longer supported
  • Loading branch information
sipayRT committed May 28, 2024
1 parent 37f5352 commit 8650e65
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

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

steps:
- uses: actions/checkout@v2
Expand Down
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"url": "https://github.com/gemini-testing/html-reporter/issues"
},
"engines": {
"node": ">= 14"
"node": ">= 18"
},
"keywords": [
"testplane",
Expand All @@ -75,7 +75,7 @@
"@gemini-testing/sql.js": "^2.0.0",
"ansi-html-community": "^0.0.8",
"axios": "1.6.3",
"better-sqlite3": "^8.5.0",
"better-sqlite3": "^10.0.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.2",
"chalk": "^4.1.2",
Expand Down

0 comments on commit 8650e65

Please sign in to comment.