Browse Source

ci: disable sourcemap in ci (#50436)

just testing

---------

Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
Jonas 1 year ago
parent
commit
84db441ef2
2 changed files with 2 additions and 1 deletions
  1. 1 1
      .github/workflows/frontend.yml
  2. 1 0
      babel.config.ts

+ 1 - 1
.github/workflows/frontend.yml

@@ -179,7 +179,7 @@ jobs:
           # This quiets up the logs quite a bit.
           DEBUG_PRINT_LIMIT: 0
         run: |
-          SENTRY_PROFILER_LOGGING_MODE=eager JEST_TESTS=$(yarn -s jest --listTests --json) yarn test-ci --forceExit
+          JEST_TESTS=$(yarn -s jest --listTests --json) yarn test-ci --forceExit
 
       - name: Save HTML artifacts
         uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # v3.1.1

+ 1 - 0
babel.config.ts

@@ -54,6 +54,7 @@ const config: TransformOptions = {
       ],
     },
     test: {
+      sourceMaps: process.env.CI ? false : true,
       plugins: [
         // Required, see https://github.com/facebook/jest/issues/9430
         'dynamic-import-node',