git.delta.rocks / unique-network / refs/commits / ea8167500201

difftreelog

add cat for .env files before account creation

Alexander Aksenov2022-09-08parent: #cb827be.patch.diff
in: master

1 file changed

modified.github/workflows/market-test_v2.ymldiffbeforeafterboth
123 node scripts/readyness.js123 node scripts/readyness.js
124 echo "Ready to start tests"124 echo "Ready to start tests"
125125
126 - name: Generate accounts126 - name: WShow content of .env file and Generate accounts
127 working-directory: qa-tests127 working-directory: qa-tests
128 run: ts-node ./src/scripts/create-market-accounts.ts128 run: |
129 cat .env
130 cat .env.example
131 cat .env.docker
132 cat .env.example.ci
133 ts-node ./src/scripts/create-market-accounts.ts
129134
130 - name: Get chain logs135 - name: Get chain logs
131 if: always() # run this step always136 if: always() # run this step always
132 run: |137 run: |
133 docker run node-parachain cat /polkadot-launch/9944.log138 docker exec node-parachain cat /polkadot-launch/9944.log
134 docker run node-parachain cat /polkadot-launch/9945.log139 docker exec node-parachain cat /polkadot-launch/9945.log
135 docker run node-parachain cat /polkadot-launch/alice.log140 docker exec node-parachain cat /polkadot-launch/alice.log
136 docker run node-parachain cat /polkadot-launch/eve.log141 docker exec node-parachain cat /polkadot-launch/eve.log
137 docker run node-parachain cat /polkadot-launch/dave.log142 docker exec node-parachain cat /polkadot-launch/dave.log
138 docker run node-parachain cat /polkadot-launch/charlie.log143 docker exec node-parachain cat /polkadot-launch/charlie.log
139 144
140 - name: Deploy contracts145 - name: Deploy contracts
141 run: |146 run: |