-
-
Notifications
You must be signed in to change notification settings - Fork 204
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
Add Github PR in URL validation #2546
Conversation
π¦ Next.js Bundle AnalysisThis analysis was generated by the next.js bundle analysis action π€
|
Page | Size (compressed) |
---|---|
global |
111.45 KB (π‘ +3 B) |
Details
The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.
Any third party scripts you have added directly to your app using the <script>
tag are not accounted for in this analysis
If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!
Thirteen Pages Changed Size
The following pages changed size from the code in this PR compared to its base branch:
Page | Size (compressed) | First Load | % of Budget (500 KB ) |
---|---|---|---|
/admin/events |
363.18 KB |
474.63 KB | 94.93% (+/- <0.01%) |
/admin/tasks |
436.41 KB |
547.86 KB | 109.57% (π‘ +0.01%) |
/course/admin/events |
446.52 KB |
557.97 KB | 111.59% (π‘ +0.01%) |
/course/admin/tasks |
419.47 KB |
530.92 KB | 106.18% (π‘ +0.01%) |
/course/schedule |
488.9 KB |
600.35 KB | 120.07% (π‘ +0.01%) |
/course/student/cross-check-submit |
470.08 KB |
581.53 KB | 116.31% (π‘ +0.01%) |
/course/student/dashboard |
403.44 KB |
514.89 KB | 102.98% (+/- <0.01%) |
/course/team-distributions |
390.51 KB |
501.96 KB | 100.39% (+/- <0.01%) |
/course/teams |
437.05 KB |
548.5 KB | 109.70% (+/- <0.01%) |
/profile |
414.13 KB |
525.58 KB | 105.12% (+/- <0.01%) |
/registry/epamlearningjs |
299.2 KB |
410.65 KB | 82.13% (+/- <0.01%) |
/registry/mentor |
349.77 KB |
461.22 KB | 92.24% (π‘ +0.01%) |
/registry/student |
349.76 KB |
461.21 KB | 92.24% (+/- <0.01%) |
Details
Only the gzipped size is provided here based on an expert tip.
First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link
is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.
Any third party scripts you have added directly to your app using the <script>
tag are not accounted for in this analysis
The "Budget %" column shows what percentage of your performance budget the First Load total takes up. For example, if your budget was 100kb, and a given page's first load size was 10kb, it would be 10% of your budget. You can also see how much this has increased or decreased compared to the base branch of your PR. If this percentage has increased by 5% or more, there will be a red status indicator applied, indicating that special attention should be given to this. If you see "+/- <0.01%" it means that there was a change in bundle size, but it is a trivial enough amount that it can be ignored.
client/src/modules/Course/pages/Student/CrossCheckSubmit/index.tsx
Outdated
Show resolved
Hide resolved
fd24b4b
to
dba8094
Compare
π’ Add
deploy
label if you want to deploy this Pull Request to staging environmentπ§ββοΈ Pull Request Naming Convention
area:*
label(s)π€ This is a ...
π Related issue link
#2545
π‘ Background and solution
Added "Github PR in URL" validation that is disabled by default and can be combined with "Github Id in URL" option
Before
After
βοΈ Self Check before Merge