Skip to content

Commit 7ddee8b

Browse files
committed
Add a basic circleci config
1 parent 424f323 commit 7ddee8b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.circleci/config.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2.1
2+
orbs:
3+
node: circleci/[email protected]
4+
jobs:
5+
test:
6+
executor:
7+
name: node/default
8+
steps:
9+
- checkout
10+
- run:
11+
name: Install dependencies
12+
command: yarn install
13+
- run:
14+
name: Lint
15+
command: yarn lint
16+
- run:
17+
name: Test
18+
command: yarn test
19+
workflows:
20+
test:
21+
jobs:
22+
- test

0 commit comments

Comments
 (0)