40 lines
997 B
YAML
40 lines
997 B
YAML
name: NPM Update Bot 🤖
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
npmupbot:
|
|
name: NPM Update Bot 🤖
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '18'
|
|
check-latest: true
|
|
cache: 'npm'
|
|
cache-dependency-path: |
|
|
package-lock.json
|
|
src/package-lock.json
|
|
|
|
- name: Bot 🤖 "Updating NPM Packages..."
|
|
run: |
|
|
npm config set -g fund false
|
|
npm install -g --silent npm-check-updates
|
|
ncu -u
|
|
npm update
|
|
cd src
|
|
ncu -u
|
|
npm update
|
|
git config --global user.name 'NPM Update Bot'
|
|
git config --global user.email 'npmupbot@users.noreply.github.com'
|
|
git add .
|
|
git commit -am "npm: package updates" || true
|
|
git push || true
|