feat(vercel): Add frontend pipeline step for Vercel integration setup#113220
Merged
evanpurkhiser merged 1 commit intoApr 16, 2026
Conversation
Register the Vercel integration in the pipeline registry with a single OAuthLoginStep component, mirroring the Slack pattern. Includes spec file with tests for the OAuth login step. Ref [VDY-44](https://linear.app/getsentry/issue/VDY-44/vercel-api-driven-integration-setup)
leeandher
approved these changes
Apr 16, 2026
evanpurkhiser
commented
Apr 16, 2026
Comment on lines
+23
to
+50
| function dispatchPipelineMessage({ | ||
| data, | ||
| origin = document.location.origin, | ||
| source = mockPopup, | ||
| }: { | ||
| data: Record<string, string>; | ||
| origin?: string; | ||
| source?: Window | MessageEventSource | null; | ||
| }) { | ||
| act(() => { | ||
| const event = new MessageEvent('message', {data, origin}); | ||
| Object.defineProperty(event, 'source', {value: source}); | ||
| window.dispatchEvent(event); | ||
| }); | ||
| } | ||
|
|
||
| beforeEach(() => { | ||
| mockPopup = { | ||
| closed: false, | ||
| close: jest.fn(), | ||
| focus: jest.fn(), | ||
| } as unknown as Window; | ||
| jest.spyOn(window, 'open').mockReturnValue(mockPopup); | ||
| }); | ||
|
|
||
| afterEach(() => { | ||
| jest.restoreAllMocks(); | ||
| }); |
Member
Author
There was a problem hiding this comment.
OK I think time to clean this up lol
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 97eb826. Configure here.
evanpurkhiser
enabled auto-merge (squash)
April 16, 2026 19:53
evanpurkhiser
deleted the
evanpurkhiser/feat-vercel-add-frontend-pipeline-step-for-vercel-integration-setup
branch
April 16, 2026 19:55
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Register the Vercel integration in the pipeline registry with a single
OAuthLoginStep component, mirroring the Slack pattern. Includes spec
file with tests for the OAuth login step.
Ref VDY-44