superlint/.github/scripts/update-npm.sh

32 lines
805 B
Bash
Raw Normal View History

2022-02-21 10:04:19 -05:00
#!/usr/bin/env bash
# Enable strict error checking
set -euo pipefail
# Install ncu
npm i -g npm-check-updates
pushd dependencies
# Update all dependencies
2022-02-21 10:50:54 -05:00
echo "Installing NPM dependencies..."
npm install
echo "Updating NPM dependencies..."
2022-02-21 10:04:19 -05:00
ncu -u
2022-02-21 10:50:54 -05:00
echo "Installing NPM dependencies..."
2022-02-21 10:04:19 -05:00
npm install
2022-02-21 10:41:04 -05:00
# Setup Git Config
2022-02-21 10:50:54 -05:00
echo "Configuring Git..."
2022-02-21 10:41:04 -05:00
git config --global user.email "noreply@github.com"
git config --global user.name "Super-Linter Automation"
2022-02-21 10:04:19 -05:00
# Push changes to remote
2022-02-21 10:50:54 -05:00
echo "Pushing changes to remote..."
2022-02-21 10:04:19 -05:00
git add .
git commit -a -Ss -m "Update NPM dependencies"
git checkout -b "npm_deps_${id}"
git push origin "npm_deps_${id}"
# Open pull request
2022-02-21 10:50:54 -05:00
echo "Opening pull request..."
2022-02-21 10:04:19 -05:00
gh pr create --title "Weekly NPM Updates" --body "Updates NPM dependencies" --base master --head "npm_deps_${id}"