Done
Details
Assignee
Priyanka TeralaPriyanka TeralaReporter
Zak BurkeZak BurkePriority
P2Story Points
0.5Sprint
NoneDevelopment Team
VolarisFix versions
Release
Poppy (R2 2023)TestRail: Cases
Open TestRail: CasesTestRail: Runs
Open TestRail: Runs
Details
Details
Assignee
Priyanka Terala
Priyanka TeralaReporter
Zak Burke
Zak BurkePriority
Story Points
0.5
Sprint
None
Development Team
Volaris
Fix versions
Release
Poppy (R2 2023)
TestRail: Cases
Open TestRail: Cases
TestRail: Runs
Open TestRail: Runs
Created August 3, 2023 at 8:31 PM
Updated October 12, 2023 at 9:57 AM
Resolved August 16, 2023 at 10:59 AM
Summary: Update Node.js to v18 in
.github/workflows/
files.Details: Use the following code-mod to update the node version used in CI:
grep -rl "NODEJS_VERSION: '16'" .github | xargs perl -pi -e "s/NODEJS_VERSION: '16'/NODEJS_VERSION: '18'/g"
Optionally, this is also a fine time to remove the
engines.node
attribute frompackage.json
since node.js is not required in production; it is a development dependency only.