Done
Details
Details
Assignee
Zak Burke
Zak BurkeReporter
Zak Burke
Zak BurkePriority
Sprint
None
Development Team
Stripes Force
Release
Poppy (R2 2023)
TestRail: Cases
Open TestRail: Cases
TestRail: Runs
Open TestRail: Runs
Created August 3, 2023 at 8:31 PM
Updated November 1, 2024 at 7:02 PM
Resolved August 28, 2023 at 7:51 PM
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.