Added CI config.

This commit is contained in:
rzadp 2019-05-06 15:18:40 +02:00
parent cb549aac86
commit 122ed448b8

25
.circleci/config.yml Normal file

@ -0,0 +1,25 @@
version: 2
jobs:
lint:
docker:
- image: circleci/node:10.15
steps:
- checkout
- run: yarn
- run: yarn run lint
test:
docker:
- image: circleci/node:10.15
environment:
HOME_RPC_URL: http://example.com
FOREIGN_RPC_URL: http://example.com
steps:
- checkout
- run: yarn
- run: yarn run test
workflows:
version: 2
poa-bridge-monorepo:
jobs:
- lint
- test