Skip to content

Update NPM Dependencies #110

Update NPM Dependencies

Update NPM Dependencies #110

Workflow file for this run

name: Update NPM Dependencies
on:
schedule:
- cron: '0 7 * * *' # Runs every day at 7:00 AM
workflow_dispatch: # Allows manual triggering of the workflow
permissions:
contents: write
pull-requests: write
jobs:
update-deps:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: make install
- name: Save check dependencies output (before)
id: check_deps_before
run: |
BEFORE=$(make check:deps) || true
echo "BEFORE=${BEFORE}"
echo "BEFORE<<EOF" >> $GITHUB_ENV
echo "$BEFORE" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Run make update
run: make update
- name: Run make check dependencies (after)
id: check_deps_after
run: |
after=$(make check:deps) || true
echo "AFTER=${AFTER}"
echo "AFTER<<EOF" >> $GITHUB_ENV
echo "$AFTER" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create or Update Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: 'chore(deps): update npm dependencies'
body: |
Automated update of package-lock.json
**Before:**
${{env.BEFORE}}
**After:**
${{env.AFTER}}
base: main
branch: update-npm-dependencies