Added resave to fix issues of session expiry #48
Workflow file for this run
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: End-to-End Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run end-to-end tests | |
run: make test-e2e | |
- name: Archive E2E Test Output | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: e2e-test-screenshots | |
path: | | |
test/e2e/output/* |