Skip to content

Configure CI artifacts and break the app #19

Configure CI artifacts and break the app

Configure CI artifacts and break the app #19

Workflow file for this run

name: End-to-end tests
on: push
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
containers: [1, 2]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Cypress tests in parallel 🧪
uses: cypress-io/github-action@v6
env:
SPLIT: ${{ strategy.job-total }}
SPLIT_INDEX: ${{ strategy.job-index }}
- name: Save screenshots in case of failures
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
if-no-files-found: ignore