@@ -117,9 +117,9 @@ jobs:
117
117
- name : Upload coverage
118
118
uses : codecov/codecov-action@v4
119
119
with :
120
- token : ${{ secrets.CODECOV_TOKEN }}
121
- verbose : true
122
- working-directory : ./frontend
120
+ token : ${{ secrets.CODECOV_TOKEN }}
121
+ verbose : true
122
+ working-directory : ./frontend
123
123
124
124
build :
125
125
name : Build and package
@@ -179,7 +179,7 @@ jobs:
179
179
180
180
e2e_test :
181
181
name : Run E2E tests
182
- needs : [version, build]
182
+ needs : [ version, build ]
183
183
runs-on : ubuntu-22.04
184
184
strategy :
185
185
# when one test fails, DO NOT cancel the other
@@ -188,7 +188,7 @@ jobs:
188
188
# https://github.com/cypress-io/github-action/issues/48
189
189
fail-fast : false
190
190
matrix :
191
- containers : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
191
+ containers : [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]
192
192
env :
193
193
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
194
194
CYPRESS_PROJECT_ID : ${{ secrets.CYPRESS_PROJECT_ID }}
@@ -242,14 +242,14 @@ jobs:
242
242
record : true
243
243
wait-on : " http://localhost:8880"
244
244
working-directory : ./frontend
245
-
245
+
246
246
- name : Display Docker container logs for debugging
247
247
if : failure()
248
248
run : docker logs monitorenv_backend
249
249
250
250
e2e_multi_windows_test :
251
251
name : Run E2E multi windows tests
252
- needs : [version, build]
252
+ needs : [ version, build ]
253
253
runs-on : ubuntu-22.04
254
254
if : false
255
255
env :
@@ -298,8 +298,9 @@ jobs:
298
298
299
299
generate_and_upload_source_maps :
300
300
name : Generate and upload source maps to Sentry
301
- needs : [version, build, unit_test_backend, unit_test_frontend, e2e_test]
301
+ needs : [ version, build, unit_test_backend, unit_test_frontend, e2e_test ]
302
302
runs-on : ubuntu-22.04
303
+ if : false
303
304
env :
304
305
VERSION : ${{ needs.version.outputs.VERSION }}
305
306
SENTRY_URL : ${{ secrets.SENTRY_URL }}
@@ -339,7 +340,7 @@ jobs:
339
340
340
341
push_to_registry :
341
342
name : Push to registry
342
- needs : [version, unit_test_backend, unit_test_frontend, e2e_test, generate_and_upload_source_maps]
343
+ needs : [ version, unit_test_backend, unit_test_frontend, e2e_test, generate_and_upload_source_maps ]
343
344
# needs: [version, e2e_test, e2e_multi_windows_test, unit_test_frontend, e2e_test]
344
345
runs-on : ubuntu-22.04
345
346
if : startsWith(github.ref, 'refs/heads/dependabot') == false
0 commit comments