Skip to content

Commit d98b338

Browse files
committed
tweak
1 parent d0cf46e commit d98b338

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.circleci/config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,18 @@ jobs:
6868
name: Test ESLint 6
6969
command: npm run test:v6
7070

71+
test-v7:
72+
docker:
73+
- image: circleci/node:14
74+
steps:
75+
- checkout
76+
- run:
77+
name: Install dependencies
78+
command: npm install
79+
- run:
80+
name: Test ESLint 7
81+
command: npm run test:v7
82+
7183
release:
7284
docker:
7385
- image: circleci/node:14

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"test:v4": "npm i [email protected] && npm run test",
4848
"test:v5": "npm i [email protected] && npm run test",
4949
"test:v6": "npm i [email protected] && npm run test",
50+
"test:v7": "npm i [email protected] && npm run test",
5051
"test-watch": "jest --watchAll"
5152
},
5253
"jest": {

0 commit comments

Comments
 (0)