Skip to content

Instantly share code, notes, and snippets.

@cakeinpanic
Created December 18, 2022 11:09
Show Gist options
  • Save cakeinpanic/79e517c41ada7aec5983c9ae8674274e to your computer and use it in GitHub Desktop.
Save cakeinpanic/79e517c41ada7aec5983c9ae8674274e to your computer and use it in GitHub Desktop.
cypress-test-on-docker:
runs-on: ubuntu-latest
container: cypress/included:9.2.0
strategy:
fail-fast: false
matrix:
containers: [ 1, 2, 3, 4 ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
name: setup node
with:
node-version: '14.x'
- name: 'install'
run: npm i --no-optional
- name: 'install @applitools/eyes-cypress'
run: npm install @applitools/eyes-cypress
- name: 'cypress test'
run: npm run ui-components:test:e2e -- --record -- --parallel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment