Tag: github actions
-
Custom Cypress Workflows
One way to have Cypress automation run is through a series of GitHub Actions workflows. The one I’m going to show you runs through a defined matrix and runs test in parallel. Take for example this Matrix. Think of this as an array of test you want running in your suite. Note that we can…
-
Github Actions Cypress Workflows
Utilizing Github actions, to run multiple Cypress specs in parallel Starting at the route of your project create a .github/workflows/ directory. This is where you will be defining and creating your different workflows. Each workflow will be responsible for running their own set of jobs and steps. Workflow Name Workflow Schedule I like to set…