Skip to content

ci: improve e2e workflow #7

ci: improve e2e workflow

ci: improve e2e workflow #7

Workflow file for this run

name: Cypress Tests
on:
pull_request:
push:
branches:
- main
- feat/9253-introduce-cypress-e2e-integration-tests
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v4
- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
runCmd: cd web && yarn test:e2e:ci
- name: Upload Cypress videos
uses: actions/upload-artifact@v3
with:
name: cypress-videos
path: web/cypress/videos/**/*.mp4
if: always()
- name: Upload Cypress screenshots
uses: actions/upload-artifact@v3
with:
name: cypress-screenshots
path: web/cypress/screenshots/**/*.png
if: always()