difftreelog
Temporary disabled some steps in workflow to debug connectivity test.
in: master
1 file changed
.github/workflows/node_build_test.ymldiffbeforeafterboth91 node-version: 16.x91 node-version: 16.x929293 - name: Install dependencies93 - name: Install dependencies94 run: |94 run: |95 cd tests95 cd tests96 yarn install96 yarn install97 yarn add mochawesome97 yarn add @polkadot/api @polkadot/util@9.4.1 mochawesome98 yarn add @polkadot/api98 yarn --pure-lockfile99 yarn --pure-lockfile10099101 - name: Run tests100 - name: Run tests102 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/108107109 - name: Test Report108# - name: Test Report110 uses: phoenix-actions/test-reporting@v8109# uses: phoenix-actions/test-reporting@v8111 id: test-report # Set ID reference for step110# id: test-report # Set ID reference for step112 if: success() || failure() # run this step even if previous step failed111# if: success() || failure() # run this step even if previous step failed113 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 created115 path: tests/mochawesome-report/test-*.json # Path to test results114# path: tests/mochawesome-report/test-*.json # Path to test results116 reporter: mochawesome-json115# reporter: mochawesome-json117 fail-on-error: 'false'116# fail-on-error: 'false'118117119 - name: Stop running containers118# - name: Stop running containers120 if: always() # run this step always119# if: always() # run this step always121 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" down122121