Skip to content

feat: Complete JavaScript interview questions and enhance Learn page UI #7

feat: Complete JavaScript interview questions and enhance Learn page UI

feat: Complete JavaScript interview questions and enhance Learn page UI #7

Workflow file for this run

name: Security Audit
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 0 * * 0' # Weekly on Sundays
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Audit Frontend
run: |
cd frontend
npm audit --audit-level=high || true # Don't fail build yet, just report
- name: Audit Backend
run: |
cd backend
npm audit --audit-level=high || true # Don't fail build yet, just report