Skip to content

Update README.md

Update README.md #12

Workflow file for this run

name: End-to-end tests
on:
push:
branches:
- main
workflow_dispatch:
jobs:
cypress-run:
runs-on: ubuntu-22.04
env:
CYPRESS_user: ${{secrets.USER}}
CYPRESS_pass: ${{secrets.PASSWORD}}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Cypress run
uses: cypress-io/github-action@v5
with:
browser: chrome
- name: Upload screenshots on failure
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots