Added CI config.
This commit is contained in:
parent
cb549aac86
commit
122ed448b8
25
.circleci/config.yml
Normal file
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
|
Loading…
Reference in New Issue
Block a user