Skip to content

Dependency Audit

Dependency Audit #37

Workflow file for this run

name: Dependency Audit
on:
pull_request:
branches: [main, develop]
push:
branches: [main]
schedule:
# Run daily at midnight UTC
- cron: '0 0 * * *'
jobs:
audit:
name: Vulnerability Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run npm audit (high/critical)
run: npm audit --audit-level=high