From 4f557b269d6a5aea5b097a6a8029a9bdb26600b4 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Thu, 04 Aug 2022 12:13:18 +0000 Subject: [PATCH] Temporary disabled some steps in workflow to debug connectivity test. --- --- a/.github/workflows/node_build_test.yml +++ b/.github/workflows/node_build_test.yml @@ -94,8 +94,7 @@ run: | cd tests yarn install - yarn add mochawesome - yarn add @polkadot/api + yarn add @polkadot/api @polkadot/util@9.4.1 mochawesome yarn --pure-lockfile - name: Run tests @@ -106,16 +105,16 @@ env: RPC_URL: http://127.0.0.1:9933/ - - name: Test Report - uses: phoenix-actions/test-reporting@v8 - id: test-report # Set ID reference for step - if: success() || failure() # run this step even if previous step failed - with: - name: Tests ${{ matrix.network }} # Name of the check run which will be created - path: tests/mochawesome-report/test-*.json # Path to test results - reporter: mochawesome-json - fail-on-error: 'false' +# - name: Test Report +# uses: phoenix-actions/test-reporting@v8 +# id: test-report # Set ID reference for step +# if: success() || failure() # run this step even if previous step failed +# with: +# name: Tests ${{ matrix.network }} # Name of the check run which will be created +# path: tests/mochawesome-report/test-*.json # Path to test results +# reporter: mochawesome-json +# fail-on-error: 'false' - - name: Stop running containers - if: always() # run this step always - run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down +# - name: Stop running containers +# if: always() # run this step always +# run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down -- gitstuff