Skip to content

Commit

Permalink
Update actions-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasweishaupt committed Oct 24, 2024
1 parent 0bc384b commit 8e888dc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/actions-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,14 @@ jobs:
echo "TEST_URL: ${TEST_URL}"
COURSES_RESPONSE=$(curl -s "${TEST_URL}")
echo "Kurse erhalten: $COURSES_RESPONSE"
if $COUSES_RESPONSE | jq -r '.courses[0].id'; then
COURSEID=$(echo $COURSES_RESPONSE | jq -r '.courses[0].id')
echo "Kurs gefunden mit ID: $COURSEID"
else
echo "Kurs nicht gefunden"
echo "Sind die Schritte in 'Simulate interactions' ordnungsgemäß durchgeführt worden?"
exit 1
fi
- name: Start screen and recording
if: github.event_name == 'workflow_dispatch' && github.event.inputs.enable_screen_recording == 'true'
Expand Down

0 comments on commit 8e888dc

Please sign in to comment.