Skip to content

Commit

Permalink
Introduced support for Node 20.x, dropped support for Node 14.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed May 6, 2023
1 parent ba55668 commit 78242cd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 114 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x ]
node-version: [ 16.x, 18.x, 20.x ]

steps:
- uses: actions/checkout@v3
Expand All @@ -31,7 +31,7 @@ jobs:

- name: GitHub Pages
uses: JamesIves/[email protected]
if: matrix.node-version == '16.x' && github.ref == 'refs/heads/main'
if: matrix.node-version == '18.x' && github.ref == 'refs/heads/main'
with:
BRANCH: gh-pages
FOLDER: target/site/serenity
Expand Down
117 changes: 8 additions & 109 deletions package-lock.json

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

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
},
"homepage": "https://serenity-js.org",
"engines": {
"node": "^14 || ^16 || ^18",
"npm": "^6 || ^7 || ^8 || ^9"
"node": "^16.13 || ^18.12 || ^20"
},
"dependencies": {
"@serenity-js/assertions": "^3.2.0",
Expand All @@ -51,7 +50,7 @@
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.26",
"@types/node": "^18.16.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chromedriver": "^113.0.0",
Expand Down

0 comments on commit 78242cd

Please sign in to comment.