Skip to content

Commit d2fa892

Browse files
committed
fix(node): dropped support for the EOL Node 18, added support for Node 24
1 parent 1c9014d commit d2fa892

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
image: ghcr.io/serenity-js/playwright:v1.56.1-noble
1616
steps:
1717
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
18+
- uses: actions/setup-node@v6
19+
with:
20+
node-version: '22.21.1'
1821
- name: Setup Node Modules
1922
uses: bahmutov/npm-install@v1
2023
- name: Run Playwright tests

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"homepage": "https://serenity-js.org",
3232
"engines": {
33-
"node": "^18.12 || ^20 || ^22"
33+
"node": "^20 || ^22 || ^24"
3434
},
3535
"dependencies": {
3636
"@playwright/test": "1.56.1",

0 commit comments

Comments
 (0)