Skip to content

Commit 90a632e

Browse files
authored
Merge pull request #180 from w3c/node24
node 24 support
2 parents a7c38e1 + 7145cd2 commit 90a632e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
node-version: [20.x, 22.x]
17+
node-version: [20, 22, 24]
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v5

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"test": "mocha --timeout 20000"
2828
},
2929
"engines": {
30-
"node": "20 || 22",
30+
"node": "20 || 22 || 24",
3131
"npm": ">=7"
3232
}
3333
}

test/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ describe('Affiliations', function () {
195195
w3c.affiliation(STAFF).fetch(itemChecker(done, 'name', 'W3C'));
196196
});
197197
it('have participants', function (done) {
198-
w3c.affiliation(STAFF).participants().fetch(listChecker(done, 'Kazuyuki Ashimura'));
198+
w3c.affiliation(STAFF).participants().fetch(listChecker(done, 'Denis Ah-Kang'));
199199
});
200200
it('have participations', function (done) {
201201
w3c.affiliation(STAFF).participations().fetch(listChecker(done, 'Accessibility Guidelines Working Group'));

0 commit comments

Comments
 (0)