-
Notifications
You must be signed in to change notification settings - Fork 98
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
Render legacy only pages #2733
Render legacy only pages #2733
Conversation
if: steps.all-changed-files.outputs.any_changed == 'true' | ||
run: | | ||
npm run check:pages-render -- --from-file .github/outputs/all_changed_files.txt | ||
- name: Stop Docker preview (cloud app) | ||
if: steps.all-changed-files.outputs.any_changed == 'true' | ||
run: docker ps -q | xargs docker stop |
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 is necessary to avoid trying to run two web servers in the same port when checking the legacy app
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.
Excellent job 👏 Nice attention to detail with how you handle API pages
Co-authored-by: Eric Arellano <[email protected]>
Co-authored-by: Eric Arellano <[email protected]>
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.
Awesome! Very clean implementation
Closes #2685
This PR extends the page render checker to verify the legacy only pages. When the new
--legacy
argument is used, the checker will only run for non-API pages that are not cloud only.Tests