-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
meta: skip lighthouse CI when no vercel preview detected #7266
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Aviv Keller <[email protected]>
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
The commit message didn't save 🤔, regardless, the PR title will be used, right? If not, feel free to force push and fix it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 1 changed files in this pull request and generated no suggestions.
${{ needs.get-vercel-preview.outputs.url }}/en/about | ||
${{ needs.get-vercel-preview.outputs.url }}/en/about/previous-releases | ||
${{ needs.get-vercel-preview.outputs.url }}/en/download | ||
${{ needs.get-vercel-preview.outputs.url }}/en/blog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to add learn here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't that be a followup, given that this is specifically for skipping the workflow?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this list was semi-intelligently designed not to be exhaustive of all pages, but to try to hit the major features
- homepage (global)
- markdown rendering (about)
- previous-releases (the release data / table)
- download (release data / os detection / lots of complexity)
- blog (blog data / rendering)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Imo we should test the learn section to ensure everything is right. Yeah it's look like about but it's not same eg there are avatars in the learn page
@@ -27,12 +27,39 @@ permissions: | |||
pull-requests: write | |||
|
|||
jobs: | |||
lighthouse-ci: | |||
get-vercel-preview: | |||
# We want to skip our lighthouse analysis on Dependabot PRs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this comment needs to move with the ordering
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean? It's commenting on the line below (skipping the Dependabot).
${{ needs.get-vercel-preview.outputs.url }}/en/about | ||
${{ needs.get-vercel-preview.outputs.url }}/en/about/previous-releases | ||
${{ needs.get-vercel-preview.outputs.url }}/en/download | ||
${{ needs.get-vercel-preview.outputs.url }}/en/blog |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this list was semi-intelligently designed not to be exhaustive of all pages, but to try to hit the major features
- homepage (global)
- markdown rendering (about)
- previous-releases (the release data / table)
- download (release data / os detection / lots of complexity)
- blog (blog data / rendering)
Description
This changes the Lighthouse CI to skip when a Vercel preview is not detected
Related Issues
#7253