We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e74e0ac commit a1a3ab4Copy full SHA for a1a3ab4
.github/workflows/tests.yml
@@ -168,9 +168,10 @@ jobs:
168
run: ${{env.docker_compose_cmd}} exec -T e2e yarn test:ci
169
170
- uses: actions/upload-artifact@v4
171
+ if: ${{ always() }}
172
with:
173
name: playwright-report
- path: playwright-report/
174
+ path: front/e2e/playwright-report
175
retention-days: 30
176
177
- name: Frontend Coverage Report
compose.ci.yml
@@ -1,9 +1,9 @@
1
services:
2
-
+
3
certbot:
4
environment:
5
- SELF_SIGNED=true
6
7
php:
8
build:
9
target: gally_php_ci
@@ -37,5 +37,7 @@ services:
37
extends:
38
file: ./compose.e2e.yml
39
service: e2e
40
+ volumes:
41
+ - ./front/e2e/:/usr/src/app:rw,cached,z
42
43
- CI=true
0 commit comments