We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 253347a commit d0ff8edCopy full SHA for d0ff8ed
.github/workflows/build-and-test.yml
@@ -108,7 +108,10 @@ jobs:
108
set -euo pipefail
109
cd src/SIL.XForge.Scripture/ClientApp
110
npm run test:gha | tee test_output.log
111
- ! grep -P 'NG\d+|ERROR:|WARN:|LOG:|INFO:' test_output.log
+ if grep --perl-regex 'NG\d+|ERROR:|WARN:|LOG:|INFO:' test_output.log; then
112
+ echo "Error: Disallowed token found in test run output, as shown above.";
113
+ exit 1;
114
+ fi
115
116
- name: "Coverage: Backend"
117
run: |
0 commit comments