Common 4.0 App Refactor Part 3 - Ornias

This commit is contained in:
kjeld Schouten-Lebbing
2021-05-22 22:43:29 +02:00
parent 5697c5212b
commit f94206ee60
54 changed files with 197 additions and 89 deletions

View File

@@ -156,6 +156,18 @@ jobs:
with:
test-results: test.json
- name: Run tests
if: ${{ steps.prep-lint.outputs.unittests == 'true' }}
run: |
if grep -q "FAIL" test.json
then
echo "Unit Test reported FAILED";
exit 1
else
echo "Unit Test reported OK";
exit 0
fi
##
# Chart-Testing Section