Skip to content

Commit

Permalink
Merge pull request #183 from MikeMcC399/ci-show-eslint-version
Browse files Browse the repository at this point in the history
ci: display exact eslint version in circleci
  • Loading branch information
jennifer-shehane committed Apr 22, 2024
2 parents c1a540d + 389bd45 commit c4c75ef
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions circle.yml
Expand Up @@ -26,6 +26,9 @@ jobs:
- run:
name: Install dependencies
command: npm ci
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Lint code
command: npm run lint
Expand All @@ -41,6 +44,9 @@ jobs:
- run:
name: Install ESLint 7
command: npm install eslint@7
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Test ESLint 7
command: npm test
Expand All @@ -56,6 +62,9 @@ jobs:
- run:
name: Install ESLint 8
command: npm install eslint@8
- run:
name: Show ESLint version
command: npx eslint --version
- run:
name: Test ESLint 8
command: npm test
Expand Down

0 comments on commit c4c75ef

Please sign in to comment.