Skip to content

Commit ee30bc8

Browse files
committed
Add CI test for ESLint v10
1 parent 00d17ee commit ee30bc8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/CI.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,23 @@ jobs:
6161
- name: Test
6262
run: npm test
6363

64+
test-with-eslint-v10-alpha:
65+
name: Test with ESLint v10 alpha
66+
runs-on: ubuntu-latest
67+
steps:
68+
- name: Checkout
69+
uses: actions/checkout@v5
70+
- name: Install Node.js v18
71+
uses: actions/setup-node@v6
72+
with:
73+
node-version: 24
74+
- name: Install Packages
75+
run: npm install
76+
- name: Install ESLint v10
77+
run: npm install --save-dev eslint@10 --force
78+
- name: Test
79+
run: npm test
80+
6481
test-without-eslint-stylistic:
6582
name: Test without ESLint Stylistic
6683
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)