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
# Reinstall modules and then clean to remove absolute paths
12
15
# Use 'npm ci' instead of 'npm install' as this is intended to be reproducible
13
16
npm ci
14
17
npm run removeNPMAbsolutePaths
15
18
# Check that repo is still clean
16
19
if [ !-z"$(git status --porcelain)" ];then
17
20
# If we get a fail here then the PR needs attention
18
-
>&2echo"Failed: node_modules are not up to date. Run 'npm ci && npm run removeNPMAbsolutePaths' on a macOS machine to update. Note it is important this command is run on macOS and not any other operating system as there is one dependency (fsevents) that is needed for macOS and may not be installed if the command is run on a Windows or Linux machine."
21
+
>&2echo"Failed: node_modules are not up to date. Add the 'Update dependencies' label to your PR to update them. Note it is important that node modules are updated on macOS and not any other operating system as there is one dependency (fsevents) that is needed for macOS and may not be installed if dependencies are updated on a Windows or Linux machine."
0 commit comments