Skip to content

Commit

Permalink
ci: add v9 test
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed May 7, 2024
1 parent d79aec3 commit 2de524a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ workflows:
- lint
- test-v7
- test-v8
- test-v9
- release:
requires:
- lint
- test-v7
- test-v8
- test-v9
filters:
branches:
only:
Expand Down Expand Up @@ -72,6 +74,24 @@ jobs:
name: Test ESLint 8
command: npm run test:legacy

test-v9:
docker:
- image: cimg/node:20.12.2
steps:
- checkout
- run:
name: Install dependencies
command: npm ci
- run:
name: Install ESLint 9
command: npm install eslint@9
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Test ESLint 9
command: npm test

release:
docker:
- image: cimg/node:20.12.2
Expand Down

0 comments on commit 2de524a

Please sign in to comment.