We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d8985 commit fcdbb06Copy full SHA for fcdbb06
1 file changed
.github/workflows/ci-test-e2e.yml
@@ -213,12 +213,12 @@ jobs:
213
run: |
214
set -o xtrace
215
216
- npm run testapi
+ npm run testapi || s=$?
217
218
docker compose -f ../../docker-compose-ci.yml stop
219
220
ls -la "$COVERAGE_DIR"
221
- exit "$s"
+ exit "${s:-0}"
222
223
- name: E2E Test API (Livechat)
224
if: inputs.type == 'api-livechat'
@@ -229,12 +229,12 @@ jobs:
229
230
231
232
- npm run testapi:livechat
+ npm run testapi:livechat || s=$?
233
234
235
236
237
238
239
- name: E2E Test UI (${{ matrix.shard }}/${{ inputs.total-shard }})
240
if: inputs.type == 'ui'
0 commit comments