Skip to content

Dependency Audit

Dependency Audit #349

Workflow file for this run

name: Dependency Audit
on:
schedule:
- cron: "0 0 * * 0" # Run weekly on Sundays at midnight
pull_request:
branches: [main]
workflow_dispatch: # Allow manual triggering
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run npm audit
run: npm audit