Skip to content

Update NPM Dependencies #19

Update NPM Dependencies

Update NPM Dependencies #19

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 ${after} >> report.txt
- 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} >> new-report.txt
- 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
branch: update-npm-dependencies