Skip to content

Commit 8437176

Browse files
committed
Configure the CI workflow
1 parent 6dba952 commit 8437176

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: End-to-end Tests
2+
on: push
3+
jobs:
4+
tests-linux:
5+
runs-on: ubuntu-22.04
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v4
9+
- name: Run Cypress Tests 🧪
10+
uses: cypress-io/github-action@v6
11+
- name: HTML Test Report
12+
uses: actions/upload-artifact@v4
13+
if: always()
14+
with:
15+
name: test-report-linux
16+
path: cucumber-report.html
17+
if-no-files-found: ignore
18+
19+
tests-windows:
20+
runs-on: windows-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
- name: Run Cypress Tests 🧪
25+
uses: cypress-io/github-action@v6
26+
- name: HTML Test Report
27+
uses: actions/upload-artifact@v4
28+
if: always()
29+
with:
30+
name: test-report-windows
31+
path: cucumber-report.html
32+
if-no-files-found: ignore

0 commit comments

Comments
 (0)