-
Notifications
You must be signed in to change notification settings - Fork 20
32 lines (31 loc) · 849 Bytes
/
Copy pathci.yml
File metadata and controls
32 lines (31 loc) · 849 Bytes
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
name: End-to-end Tests
on: push
jobs:
tests-linux:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Cypress Tests 🧪
uses: cypress-io/github-action@v6
- name: HTML Test Report
uses: actions/upload-artifact@v4
if: always()
with:
name: test-report-linux
path: cucumber-report.html
if-no-files-found: ignore
tests-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Cypress Tests 🧪
uses: cypress-io/github-action@v6
- name: HTML Test Report
uses: actions/upload-artifact@v4
if: always()
with:
name: test-report-windows
path: cucumber-report.html
if-no-files-found: ignore