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 42c6d7d commit d500827Copy full SHA for d500827
circle.yml
@@ -7,11 +7,13 @@ workflows:
7
- lint
8
- test-v7
9
- test-v8
10
+ - test-v9
11
- release:
12
requires:
13
14
15
16
17
filters:
18
branches:
19
only:
@@ -72,6 +74,24 @@ jobs:
72
74
name: Test ESLint 8
73
75
command: npm run test:legacy
76
77
+ test-v9:
78
+ docker:
79
+ - image: cimg/node:20.12.2
80
+ steps:
81
+ - checkout
82
+ - run:
83
+ name: Install dependencies
84
+ command: npm ci
85
86
+ name: Install ESLint 9
87
+ command: npm install eslint@9
88
89
+ name: Show ESLint version
90
+ command: npx eslint --version
91
92
+ name: Test ESLint 9
93
+ command: npm test
94
+
95
release:
96
docker:
97
- image: cimg/node:20.12.2
0 commit comments