Skip to content

Commit c439fcd

Browse files
dev-ashishkAshish Kumar
authored andcommitted
Add .circleci/config.yml
1 parent ca9b9ab commit c439fcd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2.1
2+
orbs:
3+
node: circleci/node@1.1.6
4+
jobs:
5+
lint:
6+
executor:
7+
name: node/default
8+
steps:
9+
- checkout
10+
- node/with-cache:
11+
steps:
12+
- run: npm install
13+
- run: npm lint
14+
workflows:
15+
lint:
16+
jobs:
17+
- lint

0 commit comments

Comments
 (0)