We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72392c0 commit bc7f71fCopy full SHA for bc7f71f
.github/workflows/tests.yml
@@ -3,6 +3,11 @@ name: Tests
3
on:
4
deployment_status:
5
6
+permissions:
7
+ contents: read
8
+ pages: write
9
+ id-token: write
10
+
11
jobs:
12
tests:
13
name: Tests E2E
@@ -62,6 +67,18 @@ jobs:
62
67
path: playwright-report/
63
68
retention-days: 30
64
69
70
+ e2e-tests-report:
71
+ name: E2E Tests Report
72
+ runs-on: ubuntu-latest
73
+ needs: tests
74
+ if: always()
75
+ steps:
76
+ - name: 📥 Get artifact
77
+ uses: actions/download-artifact@v2
78
+ with:
79
+ name: playwright-report
80
+ path: playwright-report
81
65
82
- name: 📄 Setup Pages
66
83
uses: actions/configure-pages@v2
84
0 commit comments