Skip to content

Commit 24d5383

Browse files
committed
chore(deps): support for Node 22
1 parent 8336422 commit 24d5383

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [ 18.x, 20.x ]
15+
node-version: [ 18.x, 20.x, 22.x ]
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -34,9 +34,9 @@ jobs:
3434
CI: true
3535
- name: GitHub Pages
3636
uses: JamesIves/[email protected]
37-
if: matrix.node-version == '18.x' && github.ref == 'refs/heads/main'
37+
if: matrix.node-version == '22.x' && github.ref == 'refs/heads/main'
3838
with:
39-
BRANCH: gh-pages
40-
FOLDER: target/site/serenity
41-
CLEAN: true
39+
branch: gh-pages
40+
folder: target/site/serenity
41+
clean: true
4242

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"homepage": "https://serenity-js.org",
3737
"engines": {
38-
"node": "^18.12 || ^20 || ^22.0.0"
38+
"node": "^18.12 || ^20 || ^22"
3939
},
4040
"dependencies": {
4141
"@cucumber/cucumber": "^11.1.0",

0 commit comments

Comments
 (0)