Describe the issue:
The CI pipeline is failing due to incompatibility between the latest LTS version of Node.js (v22.x) and the version of node-sass currently in use (v8.x). According to the node-sass Node Version Support Policy, node-sass@8.x is not compatible with Node.js v22, resulting in failures during dependency installation.
How to reproduce:
Raise a PR to the main branch and observe the pr-builder.
Upgrade node-sass (if possible): Check if a newer version of node-sass (if available) supports Node.js v22. Update to that version if feasible.
Switch to sass (Dart Sass): Consider replacing node-sass with sass (Dart Sass), which is compatible with all Node.js versions and does not require native bindings.
Pin Node.js Version: Temporarily pin the Node.js version in CI to an older LTS version (e.g., Node v18) that is compatible with node-sass@8.x. This will unblock the CI pipeline until an alternative solution is implemented.
Describe the issue: The CI pipeline is failing due to incompatibility between the latest LTS version of Node.js (v22.x) and the version of node-sass currently in use (v8.x). According to the node-sass Node Version Support Policy,
node-sass@8.x
is not compatible with Node.js v22, resulting in failures during dependency installation.How to reproduce:
Expected behavior:
Additional context :
Optional Fields
Related issues:
Suggested labels: