skip NoneType error as we had in early 2025 #749
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend | |
on: | |
workflow_dispatch: | |
push: | |
branches: ['develop'] | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
- closed | |
jobs: | |
test-and-report: | |
if: github.repository == 'maxplanck-ie/parkour2' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Playwright rule | |
run: | | |
make playwright | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test-suite-report | |
# if-no-files-found: ignore ## default: warn | |
path: | | |
backend/frontend_testing_suite/videos/ | |
backend/frontend_testing_suite/results/ | |
retention-days: 30 |