-
Notifications
You must be signed in to change notification settings - Fork 80
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
chore(ci): fix syntax error in workflow file, remove Node 20 for now #995
Conversation
Hmm, looks as if with this change, the node-gyp error under Node 20 reappears :/ (I also get the same error locally with Node 20.) |
Shall we revert #974 again as a quick solution and work on the actual issue again? EDIT: as an alternative we can exclude mbus for now as we do or firestore? |
I think it's okay to exclude it. @LennyHEVS if you have time to look into this it would be nice. |
@JKRhb may I ask you to exclude mbus in this PR for the time being as we do for firestore? see Line 41 in 137f2e5
and see Line 32 in 137f2e5
|
The mbus package is now excluded/disabled :) |
Hmm, seems like disabling the mbus package is not enough. So I guess we could either merge this one (without the mbus change) to fix the syntax error or #990 gets merged first and then we rebase this one against the new main branch version. |
@relu91 @egekorkan opinions? |
Just checked the error, seems that the |
Yes, even though I'm now a little bit afraid that the |
Do you want to test/check this before we go along this path... |
I have a little bit of a problem installing node 20. Maybe we can faster if we just try. |
I updated #990 with this syntax fix. Mhh, not sure but I cannot properly see where the error comes from.
Note: there is modbus-serial@8.0.11 |
I think we should have a quick fix soon so that our tests are properly run again for PRs. A proposal could be to run Node.js 16 and 18 only (for now) and we investigate why mbus and modbus are failing with Node.js 20. |
yes, let's stay just with 16 and 18 while we understand where is the problem. I hope that it is not a serialport issue.... |
@JKRhb may I ask you to revert all changes other than the actual syntax fix and removing also Node.js 20 for now. Thanks and sorry for the back and forth |
No problem at all :) The PR should now be updated accordingly :) |
#974 introduced a small syntax error that caused the workflow not to run anymore. This PR provides a simple fix.