Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
name: Test
strategy:
matrix:
node: [18, 20, 21, 'lts/*']
node: [18, 20, 22, 24, 'lts/*']
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -61,6 +61,23 @@ jobs:
- name: Test
run: npm test

test-with-eslint-v10-alpha:
name: Test with ESLint v10 alpha
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Node.js v18
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install Packages
run: npm install
- name: Install ESLint v10
run: npm install --save-dev eslint@10 --force
- name: Test
run: npm test

test-without-eslint-stylistic:
name: Test without ESLint Stylistic
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"peerDependencies": {
"@stylistic/eslint-plugin": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"@typescript-eslint/parser": "^7.0.0 || ^8.0.0",
"eslint": "^8.57.0 || ^9.0.0",
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0-0",
"vue-eslint-parser": "^10.0.0"
},
"peerDependenciesMeta": {
Expand Down
Loading