You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can see the last three workflow runs failed in the "Build Project" step with an error related to threads. This step runs the generate command as written in the package.json.
Expected Behavior
Since there's nothing wrong as far as I can see in the code for this repo, things are expected to work fine.
Current Behavior
Builds are failing.
Possible Reason
The GitHub actions seem to run with Node with versions 14 and 16 from the following lines in the workflow.
The errors in the actions seem to be related to the node-fibers package in the package.json. As per the package repo, the package is obsolete on newer versions of Node.js due to a breaking change in the V8 engine and has reached its EOL.
Read below:
Update [April 13th, 2021] -- Fibers is not compatible with nodejs v16.0.0 or later. Unfortunately, v8 commit dacc2fee0f is a breaking change and workarounds are non-trivial.
IMO, the builds are failing when the node v16 is being used.
Possible Solution
There are two possible solutions to this:
Remove the fibers package from package.json if it isn't being used anywhere.
Use a version of node strictly lower than 16.
The text was updated successfully, but these errors were encountered:
Thanks for flagging at @shubhanshu02 this was fixed in the recent commit that I made fibers was needed for a 2x compilation of SASS maybe we can look at it later not necessary now.
I can see the last three workflow runs failed in the "Build Project" step with an error related to threads. This step runs the
generate
command as written in thepackage.json
.Expected Behavior
Since there's nothing wrong as far as I can see in the code for this repo, things are expected to work fine.
Current Behavior
Builds are failing.
Possible Reason
The GitHub actions seem to run with Node with versions 14 and 16 from the following lines in the workflow.
sdg-site/.github/workflows/ci.yml
Lines 15 to 18 in 4492dae
The errors in the actions seem to be related to the node-fibers package in the
package.json
. As per the package repo, the package is obsolete on newer versions of Node.js due to a breaking change in the V8 engine and has reached its EOL.Read below:
IMO, the builds are failing when the node v16 is being used.
Possible Solution
There are two possible solutions to this:
fibers
package frompackage.json
if it isn't being used anywhere.The text was updated successfully, but these errors were encountered: