Skip to content

Commit

Permalink
ci(node-only): fix continuation condition
Browse files Browse the repository at this point in the history
  • Loading branch information
CertainLach committed Oct 19, 2023
1 parent fc6f167 commit 8b72cd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node-only-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
- name: Run Parallel tests before Node Parachain upgrade
working-directory: ${{ matrix.mainnet_branch }}/tests
if: success() || failure()
if: success()
run: |
yarn
yarn add mochawesome
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.mainnet.outputs.name }}'}})
- name: Ensure network is alive
if: success() || failure() # run this step even if previous step failed
if: success()
run: |
./tests/scripts/wait_for_first_block.sh
env:
Expand Down

0 comments on commit 8b72cd9

Please sign in to comment.