tokenbridge/.circleci/config.yml
Przemyslaw Rzad 9746430fb0
Add bridge-ui sub-repository (#27)
* Introduced bridge-ui from branch 2.1.0-rc1

* Added submodule to root directory.

* Check out bridge-ui poa-bridge-contracts to tag 2.3.0-rc0

* Added bridge-ui workspace.

* Removed duplicate CoC, Contributing, Licence, updated links in readme.

* Pulling submodules.

* Use specified submodule commit instead of pulling latest.
2019-05-09 12:03:18 +02:00

28 lines
528 B
YAML

version: 2
jobs:
lint:
docker:
- image: circleci/node:10.15
steps:
- checkout
- run: git submodule update --init
- 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: git submodule update --init
- run: yarn
- run: yarn run test
workflows:
version: 2
tokenbridge:
jobs:
- lint
- test