Skip to content

Security Audit

Security Audit #40

Workflow file for this run

name: Security Audit
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
schedule:
- cron: '0 0 * * 0' # Run weekly on Sundays
jobs:
audit:
name: NPM Audit & Dependabot Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run NPM Audit
run: npm audit --audit-level=high