-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 955 Bytes
/
cypress.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Cypress E2E Testing
on:
# Runs on pushes targeting the default branch
workflow_run:
workflows: ["Azure Static Web Apps CI/CD"]
branches: ["main"]
types:
- completed
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
cypress-run:
name: Cypress E2E Testing
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cypress E2E on Edge
uses: cypress-io/github-action@v6
with:
browser: edge
spec: |
cypress/e2e/neherdata.cy.js
- name: Cypress E2E on Chrome
uses: cypress-io/github-action@v6
with:
browser: chrome
spec: |
cypress/e2e/neherdata.cy.js
- name: Cypress E2E on Firefox
uses: cypress-io/github-action@v6
with:
browser: firefox
spec: |
cypress/e2e/neherdata.cy.js