Skip to content

Commit 5e0f1f9

Browse files
maximeperraultclaire2212
authored andcommitted
fix: disable sentry
1 parent 815f2f9 commit 5e0f1f9

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/cicd-app.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ jobs:
117117
- name: Upload coverage
118118
uses: codecov/codecov-action@v4
119119
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
123123

124124
build:
125125
name: Build and package
@@ -179,7 +179,7 @@ jobs:
179179

180180
e2e_test:
181181
name: Run E2E tests
182-
needs: [version, build]
182+
needs: [ version, build ]
183183
runs-on: ubuntu-22.04
184184
strategy:
185185
# when one test fails, DO NOT cancel the other
@@ -188,7 +188,7 @@ jobs:
188188
# https://github.com/cypress-io/github-action/issues/48
189189
fail-fast: false
190190
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 ]
192192
env:
193193
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
194194
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
@@ -242,14 +242,14 @@ jobs:
242242
record: true
243243
wait-on: "http://localhost:8880"
244244
working-directory: ./frontend
245-
245+
246246
- name: Display Docker container logs for debugging
247247
if: failure()
248248
run: docker logs monitorenv_backend
249249

250250
e2e_multi_windows_test:
251251
name: Run E2E multi windows tests
252-
needs: [version, build]
252+
needs: [ version, build ]
253253
runs-on: ubuntu-22.04
254254
if: false
255255
env:
@@ -298,8 +298,9 @@ jobs:
298298

299299
generate_and_upload_source_maps:
300300
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 ]
302302
runs-on: ubuntu-22.04
303+
if: false
303304
env:
304305
VERSION: ${{ needs.version.outputs.VERSION }}
305306
SENTRY_URL: ${{ secrets.SENTRY_URL }}
@@ -339,7 +340,7 @@ jobs:
339340

340341
push_to_registry:
341342
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 ]
343344
# needs: [version, e2e_test, e2e_multi_windows_test, unit_test_frontend, e2e_test]
344345
runs-on: ubuntu-22.04
345346
if: startsWith(github.ref, 'refs/heads/dependabot') == false

0 commit comments

Comments
 (0)