mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
dist: xenial
|
|
sudo: required
|
|
language: node_js
|
|
node_js:
|
|
- '10'
|
|
|
|
services:
|
|
- docker
|
|
|
|
cache: npm
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
before_install:
|
|
- npm install -g npm
|
|
- npm install -g codacy-coverage release-it greenkeeper-lockfile ganache-cli@~6.5.1
|
|
|
|
before_script:
|
|
- greenkeeper-lockfile-update
|
|
- ganache-cli --port 18545 > ganache-cli.log &
|
|
- git clone https://github.com/oceanprotocol/barge
|
|
- cd barge
|
|
- export AQUARIUS_VERSION=v0.3.8
|
|
- export BRIZO_VERSION=v0.4.4
|
|
- export KEEPER_VERSION=v0.11.1
|
|
- export EVENTS_HANDLER_VERSION=v0.1.2
|
|
- export KEEPER_OWNER_ROLE_ADDRESS="0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"
|
|
- bash -x start_ocean.sh --no-commons --local-spree-node 2>&1 > start_ocean.log &
|
|
- cd ..
|
|
|
|
script:
|
|
- npm run lint
|
|
- ./scripts/keeper.sh
|
|
- export ETH_PORT=18545; npm run test:cover
|
|
- npm run build
|
|
- npm run doc
|
|
- export SEED_WORDS="taxi music thumb unique chat sand crew more leg another off lamp"; npm run integration:cover
|
|
- npm run report-coverage
|
|
|
|
after_script:
|
|
- greenkeeper-lockfile-upload
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
deploy:
|
|
- provider: npm
|
|
email: 'devops@oceanprotocol.com'
|
|
api_key: ${NPM_TOKEN}
|
|
skip_cleanup: true
|
|
on:
|
|
tags: true
|