Skip to content

Commit e898b19

Browse files
committed
Added circleci basic config
1 parent fb313f0 commit e898b19

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2.1
2+
jobs:
3+
build:
4+
working_directory: ~/react-forms
5+
docker:
6+
- image: circleci/node
7+
steps:
8+
- checkout
9+
- run:
10+
name: update-npm
11+
command: 'sudo npm install -g npm@latest'
12+
- run:
13+
name: install-deps
14+
command: yarn
15+
- run:
16+
name: build-packages
17+
command: yarn build
18+
- run:
19+
name: test
20+
command: yarn test
21+
- run:
22+
name: code-coverage
23+
command: './node_modules/.bin/nyc report --reporter=text-lcov'

0 commit comments

Comments
 (0)