File tree Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 2323 yarn start
2424 env :
2525 CI : true
26+
27+ # See https://github.com/orgs/community/discussions/26822#discussioncomment-5122101
28+ results-bank2ynab-converter :
29+ if : ${{ always() }}
30+ runs-on : ubuntu-latest
31+ needs : [build]
32+ steps :
33+ - run : exit 1
34+ # see https://stackoverflow.com/a/67532120/4907315
35+ if : >-
36+ ${{
37+ contains(needs.*.result, 'failure')
38+ || contains(needs.*.result, 'cancelled')
39+ }}
Original file line number Diff line number Diff line change 28282929 with :
3030 token : ${{ secrets.CODECOV_TOKEN }}
31+
32+ # See https://github.com/orgs/community/discussions/26822#discussioncomment-5122101
33+ results-parsers :
34+ if : ${{ always() }}
35+ runs-on : ubuntu-latest
36+ needs : [build]
37+ steps :
38+ - run : exit 1
39+ # see https://stackoverflow.com/a/67532120/4907315
40+ if : >-
41+ ${{
42+ contains(needs.*.result, 'failure')
43+ || contains(needs.*.result, 'cancelled')
44+ }}
Original file line number Diff line number Diff line change 2323 yarn build
2424 env :
2525 CI : true
26+
27+ # See https://github.com/orgs/community/discussions/26822#discussioncomment-5122101
28+ results-web-app :
29+ if : ${{ always() }}
30+ runs-on : ubuntu-latest
31+ needs : [build]
32+ steps :
33+ - run : exit 1
34+ # see https://stackoverflow.com/a/67532120/4907315
35+ if : >-
36+ ${{
37+ contains(needs.*.result, 'failure')
38+ || contains(needs.*.result, 'cancelled')
39+ }}
You can’t perform that action at this time.
0 commit comments