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