-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Improve astro check #3906
Improve astro check #3906
Conversation
🦋 Changeset detectedLatest commit: 4c0494a The changes in this PR will be included in the next version bump. This PR includes changesets to release 9 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Ugh, tests are failing on Windows.. will investigate EDIT: It turns out that |
bold(red(`${result.errors} ${result.errors === 1 ? 'error' : 'errors'}`)), | ||
bold(yellow(`${result.warnings} ${result.warnings === 1 ? 'warning' : 'warnings'}`)), | ||
dim(`${result.hints} ${result.hints === 1 ? 'hint' : 'hints'}\n`), | ||
].join(`\n${dim('-')} `) |
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.
Love the summary section
lgtm overall. Needs a changeset. Also you mentioned getting the examples to run astro check, are you intending to do that in another PR? |
Yep, part of #3940 I'm thinking. Thank you for the review! |
Changes
This improves and fixes
astro check
in many ways:Result:
Before
After
Testing
Added some simple tests that
astro check
worksDocs
N/A