Skip to content

Commit 1a0186c

Browse files
committed
Run tests in Node.js 23
1 parent 9812fb0 commit 1a0186c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
strategy:
5555
matrix:
56-
node-version: ['18', '20', '22']
56+
node-version: ['18', '20', '22', '23']
5757

5858
steps:
5959
- uses: actions/checkout@v4

test/import.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ it
1010
async () =>
1111
{
1212
const namespace = await import('gulp-eslint-new');
13-
const actual = Object.keys(namespace).sort();
13+
const actual = Object.keys(namespace).filter(key => key !== 'module.exports').sort();
1414
const expected =
1515
[
1616
'default',

0 commit comments

Comments
 (0)