WIP - [ConstructionService] Update /preprocess and /metadata logic #116
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CI' | |
on: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Cancel previous workflow runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: Install NodeJS 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Download Gear node (release=build) | |
run: wget -O ./gear https://github.com/gear-tech/gear/releases/download/build/gear | |
- name: Build spec | |
run: | | |
chmod +x ./gear | |
./gear build-spec --dev > dev.json | |
- name: Install rosetta-cli tool | |
run: curl -sSfL https://raw.githubusercontent.com/coinbase/rosetta-cli/master/scripts/install.sh | sh -s | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Update balances | |
run: node ./test/set-prefunded-acc.js ./dev.json ./test/development/config.json | |
- name: Run Gear node (testnet) | |
run: nohup ./gear --chain ./dev.json --alice --tmp --pruning archive --execution=wasm --unsafe-ws-external --unsafe-rpc-external --rpc-methods Unsafe --rpc-cors all & | |
- name: Sleep | |
run: sleep 10 | |
- name: Make transfers | |
run: node ./test/make-transfers.js | |
- name: Update gear-testnet config | |
run: node ./util/cli/app.js update config/development.json -a http://127.0.0.1:9933 | |
- name: Run Rosetta server in online mode | |
run: yarn start:dev --update-config & | |
- name: Run Rosetta server in offline mode | |
run: yarn start:offline --update-config & | |
env: | |
PORT: 8090 | |
- name: Run check:data | |
run: ./bin/rosetta-cli --configuration-file ./test/development/config.json check:data | |
- name: Run check:construction | |
run: ./bin/rosetta-cli --configuration-file ./test/development/config.json check:construction |