We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a373589 commit b552117Copy full SHA for b552117
.github/workflows/build.yml
@@ -26,6 +26,12 @@ jobs:
26
- name: Run regular tests
27
run: ./amper test --exclude-module=amper-mobile-test
28
29
+ - name: Test summary
30
+ uses: test-summary/action@v2
31
+ if: ${{ !cancelled() }} # run this step even if the previous step failed, but not if canceled
32
+ with:
33
+ paths: build/reports/**/TEST-*.xml
34
+
35
test-mobile:
36
strategy:
37
matrix:
@@ -57,3 +63,9 @@ jobs:
57
63
58
64
- name: Run mobile tests
59
65
run: ./amper test -m amper-mobile-test ${{ matrix.testArgs }}
66
67
68
69
70
71
0 commit comments