Skip to content

Commit e562bb0

Browse files
committed
build: add linting step to the CircleCI's workflow
1 parent 48c9e65 commit e562bb0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
- node/install-packages:
1515
pkg-manager: yarn
1616
with-cache: true
17+
- run:
18+
name: Lint Source Code
19+
command: yarn lint
1720
- run:
1821
name: Test the library
1922
command: yarn test
@@ -27,4 +30,7 @@ jobs:
2730
workflows:
2831
test_and_build_workflow:
2932
jobs:
30-
- test_and_build
33+
- test_and_build:
34+
filters:
35+
branches:
36+
only: master

0 commit comments

Comments
 (0)