Skip to content

Commit d500827

Browse files
committed
ci: add v9 test
1 parent 42c6d7d commit d500827

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

circle.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ workflows:
77
- lint
88
- test-v7
99
- test-v8
10+
- test-v9
1011
- release:
1112
requires:
1213
- lint
1314
- test-v7
1415
- test-v8
16+
- test-v9
1517
filters:
1618
branches:
1719
only:
@@ -72,6 +74,24 @@ jobs:
7274
name: Test ESLint 8
7375
command: npm run test:legacy
7476

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+
- run:
86+
name: Install ESLint 9
87+
command: npm install eslint@9
88+
- run:
89+
name: Show ESLint version
90+
command: npx eslint --version
91+
- run:
92+
name: Test ESLint 9
93+
command: npm test
94+
7595
release:
7696
docker:
7797
- image: cimg/node:20.12.2

0 commit comments

Comments
 (0)