Permalink
Cannot retrieve contributors at this time
executable file
18 lines (14 sloc)
508 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/.github/workflows/script/update-node-modules.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ "$1" != "update" && "$1" != "check-only" ]; then | |
>&2 echo "Failed: Invalid argument. Must be 'update' or 'check-only'" | |
exit 1 | |
fi | |
sudo npm install --force -g npm@9.2.0 | |
# clean the npm cache to ensure we don't have any files owned by root | |
sudo npm cache clean --force | |
if [ "$1" = "update" ]; then | |
npm install | |
fi | |
# Reinstall modules and then clean to remove absolute paths | |
# Use 'npm ci' instead of 'npm install' as this is intended to be reproducible | |
npm ci | |
npm run removeNPMAbsolutePaths |