Skip to content

Commit 23171d4

Browse files
committed
chore: enabled circle ci
1 parent e290230 commit 23171d4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circle/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: 'circleci/node:latest'
6+
steps:
7+
- checkout
8+
- run:
9+
name: install
10+
command: npm install
11+
- run:
12+
name: lint
13+
command: npm run lint
14+
- run:
15+
name: build
16+
command: npm run build
17+
- run: npm run commitlint-circle
18+
- run:
19+
name: release
20+
command: npm run semantic-release

0 commit comments

Comments
 (0)