Skip to content

text: move command timeout to cypress config #6

text: move command timeout to cypress config

text: move command timeout to cypress config #6

Workflow file for this run

name: Cypress Tests
on:
pull_request:
push:
branches:
- main
- feat/9253-introduce-cypress-e2e-integration-tests
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v3
- 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()