Skip to content

Commit

Permalink
chore: add dependabot for Node.js server and React client updates (#4)
Browse files Browse the repository at this point in the history
- Configured **Dependabot** to automate dependency updates for the **Node.js server** and **React client**.
- Ensures that dependencies remain secure and up-to-date across both environments.
  • Loading branch information
Fingertips18 authored Nov 24, 2024
1 parent 13d9407 commit 9a72ec1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
updates:
# Update npm dependencies in the backend directory
- package-ecosystem: "npm"
directory: /backend
schedule:
interval: "daily" # Check for updates every day
commit-message:
prefix: "chore" # Use 'chore' prefix for the commit message
include: "scope" # Include the scope (dependency name) in the commit message
reviewers:
- Fingertips18

# Update npm dependencies in the client directory
- package-ecosystem: "npm"
directory: /frontend
schedule:
interval: "daily"
commit-message:
prefix: "chore"
include: "scope"
reviewers:
- Fingertips18

0 comments on commit 9a72ec1

Please sign in to comment.