Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

Commit 0d9b432

Browse files
committed
circleci config
add circleci 2.0 config
1 parent dcc0625 commit 0d9b432

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:8.9.1
6+
steps:
7+
- checkout
8+
- run:
9+
name: install
10+
command: npm i
11+
- run:
12+
name: lint
13+
command: npm run lint
14+
- run:
15+
name: test
16+
command: npm test -- --coverage
17+
- run:
18+
name: coverage
19+
command: cat ./coverage/lcov.info | node_modules/.bin/codacy-coverage -p .

0 commit comments

Comments
 (0)