0a677d69a8
Scans npm dependencies weekly and on every push/PR for high+ severity issues. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
380 B
YAML
23 lines
380 B
YAML
name: Security
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
pull_request:
|
|
branches: ["**"]
|
|
schedule:
|
|
- cron: '0 6 * * 1'
|
|
|
|
jobs:
|
|
npm-audit:
|
|
name: JS Security (npm audit)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Run npm audit
|
|
run: npm audit --audit-level=high
|