File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ jobs:
130130
131131 - name : " Publish Jest test report"
132132 uses : dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5 # v1.9.1
133+ continue-on-error : true
133134 with :
134135 name : Jest Test Report
135136 path : ' test-results/**/junit.xml'
@@ -138,6 +139,7 @@ jobs:
138139
139140 - name : " Publish pytest test report"
140141 uses : dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5 # v1.9.1
142+ continue-on-error : true
141143 with :
142144 name : Pytest Test Report
143145 path : ' test-results/**/pytest-report.xml'
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ cd "$(git rev-parse --show-toplevel)"
2222npm ci && \
2323npm run test:unit --workspaces && \
2424cd docs && \
25- ./test.sh && \
25+ (if [[ -f ./test.sh ]] ; then ./test.sh ; else echo " ⚠️ WARNING: test.sh does not exist in docs/, skipping... " ; fi) && \
2626cd .. && \
2727mkdir -p .reports && \
2828TMPDIR=" ./.reports" ./node_modules/.bin/lcov-result-merger " **/.reports/unit/coverage/lcov.info" " .reports/lcov.info" --ignore " node_modules" --prepend-source-files --prepend-path-fix " ../../.." && \
You can’t perform that action at this time.
0 commit comments