Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Add code style checker in unit test workflow (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 committed Mar 27, 2019
1 parent 4b7d14c commit 3a67125
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ unit_tests: &unit_tests
- run:
name: Install modules and dependencies.
command: npm install
- run:
name: Check code style and linting
command: npm run check
- run:
name: Ensure code compiles to JS.
command: npm run compile
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"test": "lerna run test",
"bootstrap": "lerna bootstrap",
"bump": "lerna publish",
"codecov": "lerna run codecov"
"codecov": "lerna run codecov",
"check": "lerna run check"
},
"keywords": [
"opencensus",
Expand Down

0 comments on commit 3a67125

Please sign in to comment.