difftreelog
Update node-only-update_v3.yml
in: master
1 file changed
.github/workflows/node-only-update_v3.ymldiffbeforeafterboth1name: nodes-only update1name: Parallele tests223# Controls when the action will run.3# Controls when the action will run.4on:4on:172 reporter: mochawesome-json173 reporter: mochawesome-json173 fail-on-error: 'false'174 fail-on-error: 'false'174 175 176 - name: Run Sequential tests on Node Parachain177 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/186175 - name: Stop running containers187 - name: Sequential Tests report188 uses: phoenix-actions/test-reporting@v8189 id: test-report-sequential176 if: always() # run this step always190 if: success() || failure() # run this step even if previous step failed177 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes191 with:178192 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 179 - name: Remove builder cache197 - name: Stop running containers180 if: always() # run this step always198 if: always() # run this step always181 run: |199 run: docker-compose -f ".docker/docker-compose-forkless.yml" -f ".docker/docker-compose.node.${{ matrix.network }}.yml" down --volumes182 docker builder prune -f -a200183 docker system prune -f184 docker image prune -f -a185 186 - name: List files in Workspace201 - name: Remove builder cache187 if: always()202 if: always() # run this step always188 uses: |203 run: |189 ls -la ./204 docker builder prune -f -a205 docker system prune -f206 docker image prune -f -a207 208# - name: List files in Workspace209# if: always()210# uses: |211# ls -la ./212#190213