Skip to content

Update package.json #341

Update package.json

Update package.json #341

Workflow file for this run

name: Cypress Component Tests
on:
push:
pull_request:
types: [opened, reopened]
jobs:
cypress_matrix:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] #, macos-latest, windows-latest]
browser: [chrome, firefox, edge]
timeout-minutes: 60
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cypress run
uses: cypress-io/[email protected]
with:
browser: ${{ matrix.browser }}
component: true
record: true
group: "${{ matrix.browser }} on ${{ matrix.os }}"
headed: true
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}