fix(db): Fix zp_entity_relationship table migration issues #2702
Workflow file for this run
This file contains hidden or 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: Acceptance Tests (Selenium) | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "master", "*.*-dev" ] | |
| pull_request: | |
| branches: [ "master", "*.*-dev" ] | |
| jobs: | |
| acceptance: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run Acceptance Tests | |
| run: make acceptance-test-ci | |
| - name: Store screenshots | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: acceptance-test | |
| path: tests/_output |