-
Notifications
You must be signed in to change notification settings - Fork 71
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
feat: Add configMap
option
#645
Conversation
Bumps [lint-staged](https://github.com/okonet/lint-staged) from 12.3.8 to 12.4.0. - [Release notes](https://github.com/okonet/lint-staged/releases) - [Commits](lint-staged/lint-staged@v12.3.8...v12.4.0) --- updated-dependencies: - dependency-name: lint-staged dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
@cobraz , you forgot one important change. |
Sorry, I've seen that you add this PR. So, merge Node version changes before this PR. |
Merging master after #561 is in. |
@RobbieMcKinstry were you taking this PR over the finish line? This LGTM basically just needs the lock file conflicts resolved. The map-in-string encoding issue is inevitable it seems with how Actions work. |
@t0yv0 I was going to review if no one else got to it, but you have much greater context on this matter so I'm deferring to you. :D If you want to hammer-stamp it, I can fix the merge conflict. But I think we should wait until we release v3.18.1 and fix the P1 before merging, since this feature touches a lot of files! |
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.
LGTM modulo conflicts.
I encountered a small problem with this but it shouldn't cause much delay. I went to rebase via the CLI but the branch had diverged pretty far. So I used the GH UI to merge I'm just not sure if it should be generated as part of CI using the bot, or if it's generated locally and committed during the PR process. I don't know what the conversion is here and I don't have enough exposure to the Node ecosystem to know the right answer :) I'm going to look at the CI actions for this repro to figure it out. This was an opportunity for me to learn in the open, albeit 15 minutes at a time :) |
I regenerated the lockfile and committed it. Please let me know if this was the wrong thing to do, and I'll revert. Looks like the more pressing issue is the nullish chaining operator ( @t0yv0 what do you think? Is it possible the action could run in an environment later than Node 12? Say, if the user installs a newer version of Node. I don't know how this code here is successfully running in prod; I must be missing something. |
Regenerating yarn.lock sounds good yes. |
Regarding ? operator maybe typescript compiles it down so it runs as something else on JS node 12? |
So @RobbieMcKinstry I'm digging into this to try to understand it. It sounds like I suspect something changed in the compiler options or version? |
The short answer is that |
🙇 |
This is exactly the same pull request as #584, but I've removed some of the unrelated changes that needs to come as separate pull requests.
closes #584
fixes #165
needs #651