Skip to content

Commit d00aa8d

Browse files
authored
Added Lint Step to CircleCI Config (#5)
* add lint step to CircleCI config * add lint bash script
1 parent 9b1be80 commit d00aa8d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.circleci/config.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ jobs:
77
- run:
88
name: Install Packages
99
command: npm install
10+
- run:
11+
name: Run Lint
12+
command: scripts/lint.sh
1013
- run:
1114
name: Run Tests
1215
command: npm run test

scripts/lint.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
npm run lint
2+
exit 0

0 commit comments

Comments
 (0)