File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -45,16 +45,14 @@ jobs:
45
45
node_modules
46
46
*/*/node_modules
47
47
key : ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
48
- - run : yarn install
49
48
- uses : actions/download-artifact@v2
50
49
with :
51
50
name : build
52
51
path : ${{ github.workspace }}/packages
53
52
-
uses :
andresz1/[email protected]
54
53
with :
55
54
github_token : ${{ secrets.GITHUB_TOKEN }}
56
- build_script : echo "doing nothing"
57
- skip_step : install
55
+ skip_step : build
58
56
59
57
job_lint :
60
58
name : Lint
Original file line number Diff line number Diff line change @@ -407,6 +407,11 @@ export function errorHandler(options?: {
407
407
408
408
if ( shouldHandleError ( error ) ) {
409
409
withScope ( _scope => {
410
+ // For some reason we need to set the transaction on the scope again
411
+ const transaction = ( res as any ) . __sentry_transaction as Span ;
412
+ if ( transaction && _scope . getSpan ( ) === undefined ) {
413
+ _scope . setSpan ( transaction ) ;
414
+ }
410
415
const eventId = captureException ( error ) ;
411
416
( res as any ) . sentry = eventId ;
412
417
next ( error ) ;
You can’t perform that action at this time.
0 commit comments