git.delta.rocks / unique-network / refs/commits / 4f557b269d6a

difftreelog

Temporary disabled some steps in workflow to debug connectivity test.

Alexander Aksenov2022-08-04parent: #586d3e0.patch.diff
in: master

1 file changed

modified.github/workflows/node_build_test.ymldiffbeforeafterboth
91 node-version: 16.x91 node-version: 16.x
9292
93 - name: Install dependencies93 - name: Install dependencies
94 run: |94 run: |
95 cd tests95 cd tests
96 yarn install96 yarn install
97 yarn add mochawesome97 yarn add @polkadot/api @polkadot/util@9.4.1 mochawesome
98 yarn add @polkadot/api98 yarn --pure-lockfile
99 yarn --pure-lockfile
10099
101 - name: Run tests100 - name: Run tests
102 run: |101 run: |
106 env:105 env:
107 RPC_URL: http://127.0.0.1:9933/106 RPC_URL: http://127.0.0.1:9933/
108107
109 - name: Test Report108# - name: Test Report
110 uses: phoenix-actions/test-reporting@v8109# uses: phoenix-actions/test-reporting@v8
111 id: test-report # Set ID reference for step110# id: test-report # Set ID reference for step
112 if: success() || failure() # run this step even if previous step failed111# if: success() || failure() # run this step even if previous step failed
113 with:112# with:
114 name: Tests ${{ matrix.network }} # Name of the check run which will be created113# name: Tests ${{ matrix.network }} # Name of the check run which will be created
115 path: tests/mochawesome-report/test-*.json # Path to test results114# path: tests/mochawesome-report/test-*.json # Path to test results
116 reporter: mochawesome-json115# reporter: mochawesome-json
117 fail-on-error: 'false'116# fail-on-error: 'false'
118117
119 - name: Stop running containers118# - name: Stop running containers
120 if: always() # run this step always119# if: always() # run this step always
121 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down120# run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down
122121