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 a32e934 commit 582c259Copy full SHA for 582c259
.github/workflows/build-and-test.yml
@@ -105,10 +105,10 @@ jobs:
105
# Run the tests while making sure none of the common/known warnings are printed
106
- name: "Test: Frontend"
107
run: |
108
- set -euo pipefail
+ set -xeuo 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
+ npm run test:gha |& tee test_output.log
+ ! grep --perl-regex 'NG\d+|ERROR:|WARN:|LOG:|INFO:' test_output.log
112
113
- name: "Coverage: Backend"
114
0 commit comments