We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d17ee commit ee30bc8Copy full SHA for ee30bc8
.github/workflows/CI.yml
@@ -61,6 +61,23 @@ jobs:
61
- name: Test
62
run: npm test
63
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
+
81
test-without-eslint-stylistic:
82
name: Test without ESLint Stylistic
83
runs-on: ubuntu-latest
0 commit comments