-
Notifications
You must be signed in to change notification settings - Fork 379
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
fix: Add support for upper case variables #1721
Conversation
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.
Unit test?
Currently new projen development builds are failing (example: #1721) because `yaml` published v2.0.0 to the `next` tag, in which they bumped the minimum node version they require from 12 to 14. Since new development builds are automatically picking this up and projen still supports node v12, this PR pins the version of `yaml` so the new version isn't picked up by `yarn install`. This should fix #1740 We should also upgrade the minimum node version projen supports, but it's better to do that in a separate PR. (Issue: #1739) --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Codecov Report
@@ Coverage Diff @@
## main #1721 +/- ##
==========================================
+ Coverage 88.06% 89.89% +1.83%
==========================================
Files 132 152 +20
Lines 5109 6177 +1068
Branches 1207 1692 +485
==========================================
+ Hits 4499 5553 +1054
- Misses 610 619 +9
- Partials 0 5 +5
Continue to review full report at Codecov.
|
Fixing the issue of job variables rendering as snake case and don't respecting the original format
closes #1693
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.