Skip to content

Commit cc38020

Browse files
authored
Merge pull request #31 from regaw-leinad/copilot/add-support-node-24
Add Node.js 24 support, drop Node.js 18
2 parents 8c6d583 + 59b9dd4 commit cc38020

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# the Node.js versions to build on
12-
node-version: [ 18.x, 20.x, 22.x ]
12+
node-version: [ 20.x, 22.x, 24.x ]
1313

1414
steps:
1515
- uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"url": "https://paypal.me/dwager0"
1818
},
1919
"engines": {
20-
"node": "^18 || ^20 || ^22",
20+
"node": "^20 || ^22 || ^24",
2121
"homebridge": "^1.7.0 || ^2.0.0-beta.0"
2222
},
2323
"main": "dist/index.js",

0 commit comments

Comments
 (0)