We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a7954 commit 722136aCopy full SHA for 722136a
1 file changed
.github/workflows/ci.yml
@@ -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
22
23
24
25
26
27
28
29
30
+ name: test-report-windows
31
32
0 commit comments