Skip to content

docs: fix readme links for cypress documentation restructuring #636

docs: fix readme links for cypress documentation restructuring

docs: fix readme links for cypress documentation restructuring #636

Workflow file for this run

name: example-docker
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:
jobs:
docker-browsers:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
browser: [chrome, edge, electron, firefox]
# from https://hub.docker.com/r/cypress/browsers/tags
container:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
options: --user 1001
steps:
- name: Checkout
uses: actions/checkout@v4
# replace with the following for regular use:
# uses: cypress-io/github-action@v6
- name: Cypress tests
uses: ./
with:
working-directory: examples/basic
browser: ${{ matrix.browser }}