Skip to content

Commit c4c75ef

Browse files
Merge pull request #183 from MikeMcC399/ci-show-eslint-version
ci: display exact eslint version in circleci
2 parents c1a540d + 389bd45 commit c4c75ef

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

circle.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
- run:
2727
name: Install dependencies
2828
command: npm ci
29+
- run:
30+
name: Show ESLint version
31+
command: npx eslint --version
2932
- run:
3033
name: Lint code
3134
command: npm run lint
@@ -41,6 +44,9 @@ jobs:
4144
- run:
4245
name: Install ESLint 7
4346
command: npm install eslint@7
47+
- run:
48+
name: Show ESLint version
49+
command: npx eslint --version
4450
- run:
4551
name: Test ESLint 7
4652
command: npm test
@@ -56,6 +62,9 @@ jobs:
5662
- run:
5763
name: Install ESLint 8
5864
command: npm install eslint@8
65+
- run:
66+
name: Show ESLint version
67+
command: npx eslint --version
5968
- run:
6069
name: Test ESLint 8
6170
command: npm test

0 commit comments

Comments
 (0)