Skip to content

Commit

Permalink
continue execution after fail
Browse files Browse the repository at this point in the history
the failure of the previous job stopped the next job from executing - add check to always run regardless of the previous job status
  • Loading branch information
john0isaac authored Nov 9, 2023
1 parent 552e479 commit f3a5bb6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/validate-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
run: exit 1

check-paths-tracking:
if: ${{ always() }}
needs: check-broken-paths
name: Check Paths Have Tracking
runs-on: ubuntu-latest
Expand Down Expand Up @@ -102,6 +103,7 @@ jobs:
run: exit 1

check-urls-tracking:
if: ${{ always() }}
needs: check-paths-tracking
name: Check URLs Have Tracking
runs-on: ubuntu-latest
Expand Down Expand Up @@ -145,6 +147,7 @@ jobs:
run: exit 1

check-urls-locale:
if: ${{ always() }}
needs: check-urls-tracking
name: Check URLs Don't Have Locale
runs-on: ubuntu-latest
Expand Down

0 comments on commit f3a5bb6

Please sign in to comment.