Fix #276: explore search results sections, landing page centering and search reset #593
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: e2e-tests | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| files-changed: | |
| uses: ./.github/workflows/files-changed.yml | |
| test-e2e: | |
| if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.frontend == 'true' || needs.files-changed.outputs.actions == 'true' || needs.files-changed.outputs.e2e == 'true' | |
| needs: files-changed | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| check-latest: true | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: "^10.26.0" | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24.15.0 | |
| - run: make deps-frontend frontend deps-backend | |
| - run: pnpm exec playwright install --with-deps | |
| - run: make test-e2e-sqlite | |
| timeout-minutes: 40 | |
| env: | |
| USE_REPO_TEST_DIR: 1 | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report-${{ github.run_id }} | |
| path: | | |
| tests/e2e/test-artifacts/ | |
| tests/e2e/reports/ | |
| retention-days: 30 | |
| if-no-files-found: ignore |