Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Dec 9, 2024
1 parent fbeafde commit c8975b3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/e2e-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
# Run the npx task and store exit code in a variable
npx cypress run --spec "cypress/e2e/${{ matrix.tests }}/**" || exit_code=$?
if [[ "$(( ( RANDOM % 5 ) + 1 ))" == "3" ]]; then
if [[ "$(( ( RANDOM % 3 ) + 1 ))" == "3" ]]; then
echo "generic kaboom"
exit 53
fi
Expand Down Expand Up @@ -136,7 +136,12 @@ jobs:
- name: Download all artifacts
uses: actions/download-artifact@v3
with:
path: app/web/cypress/videos/**
path: app/web/cypress/videos
strip-components: 1
- name: List available artifacts
run: ls -R app/web/cypress/videos
- name: List available artifacts ii
run: ls ./
- run: |
has_artifacts=false
# Check for marker files
Expand Down

0 comments on commit c8975b3

Please sign in to comment.