difftreelog
Update node-only-update_v3.yml
in: master
1 file changed
.github/workflows/node-only-update_v3.ymldiffbeforeafterboth153 shell: bash153 shell: bash154154155 - name: Run Parallel tests on Node Parachain155 - name: Run Parallel tests on Node Parachain156 working-directory: ${{ matrix.mainnet_branch }}/tests156 working-directory: tests157 run: |157 run: |158 yarn install158 yarn install159 yarn add mochawesome159 yarn add mochawesome169 if: success() || failure() # run this step even if previous step failed169 if: success() || failure() # run this step even if previous step failed170 with:170 with:171 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created171 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created172 path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-parallel-*.json # Path to test results172 path: tests/mochawesome-report/test-parallel-*.json # Path to test results173 reporter: mochawesome-json173 reporter: mochawesome-json174 fail-on-error: 'false'174 fail-on-error: 'false'175 175 176 - name: Run Sequential tests on Node Parachain176 177 working-directory: ${{ matrix.mainnet_branch }}/tests178 run: |179 yarn install180 yarn add mochawesome181 echo "Ready to start tests"182 yarn polkadot-types183 NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}184 env:185 RPC_URL: http://127.0.0.1:9933/186187 - name: Sequential Tests report188 uses: phoenix-actions/test-reporting@v8189 id: test-report-sequential190 if: success() || failure() # run this step even if previous step failed191 with:192 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created193 path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-sequential-*.json # Path to test results194 reporter: mochawesome-json195 fail-on-error: 'false'196 197 - name: Stop running containers177 - name: Stop running containers198 if: always() # run this step always178 if: always() # run this step always324 shell: bash304 shell: bash325305326 - name: Run Sequential tests on Node Parachain306 - name: Run Sequential tests on Node Parachain327 working-directory: ${{ matrix.mainnet_branch }}/tests307 working-directory: tests328 run: |308 run: |329 yarn install309 yarn install330 yarn add mochawesome310 yarn add mochawesome340 if: success() || failure() # run this step even if previous step failed320 if: success() || failure() # run this step even if previous step failed341 with:321 with:342 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created322 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created343 path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-sequential-*.json # Path to test results323 path: tests/mochawesome-report/test-sequential-*.json # Path to test results344 reporter: mochawesome-json324 reporter: mochawesome-json345 fail-on-error: 'false'325 fail-on-error: 'false'346 326