You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
767 B

name: NPM Update Bot 🤖
on:
push:
branches: [ "main" ]
schedule:
- cron: "0 0 * * *"
jobs:
nub:
name: NPM Update Bot 🤖
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: 'lts/*'
check-latest: true
- name: Bot 🤖 "Updating NPM Packages..."
run: |
npm config set fund false
npm install -g npm-check-updates
npm update
cd src
npm update
git config --global user.name 'NPM Update Bot'
git config --global user.email '[email protected]'
git add .
git commit -am "npm: package updates" || true
git push || true