Fix CI #6
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: e2e tests | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
checkPr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run container | |
run: make pantheon_run | |
- name: Install project deps | |
run: make deps | |
- name: Apply db migrations | |
run: make migrate | |
- name: Build all systems | |
run: make | |
- name: Run all tests | |
run: make e2e | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: Fenrir/playwright-report/ | |
retention-days: 30 | |
- name: Stop containers | |
if: always() | |
run: make pantheon_stop | |