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

difftreelog

fix typo in command name.

Alexander Aksenov2022-08-04parent: #0f1fcf0.patch.diff
in: master

1 file changed

modified.github/workflows/node_build_test.ymldiffbeforeafterboth
82 - name: Build the stack82 - name: Build the stack
83 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build83 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build
8484
85 - name: Wait85# - name: Wait
86 run: sleep 420s86# run: sleep 420s
8787
88 - name: Install node88 - name: Install node
89 uses: actions/setup-node@v189 uses: actions/setup-node@v1
98# yarn --pure-lockfile98# yarn --pure-lockfile
9999
100 - name: Run tests100 - name: Run tests
101 run: |101 run: |
102 cd tests102 cd tests
103 echi "Installing required packages"103 echo "Installing required packages"
104 yarn install104 yarn install
105 yarn add @polkadot/api @polkadot/util@9.4.1 mochawesome105 yarn add @polkadot/api @polkadot/util@9.4.1 mochawesome
106 echo "Ready to start tests"106 echo "Ready to start tests"
107 node .docker/readyness.js107 node .docker/readyness.js
108 NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}108 NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}
109 env:109 env:
110 RPC_URL: http://127.0.0.1:9933/110 RPC_URL: http://127.0.0.1:9933/
111111