-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (42 loc) · 1.09 KB
/
Copy pathsecurity.yml
File metadata and controls
50 lines (42 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Security checks
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
audit-and-secret-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.13.0
cache: npm
- name: Install dependencies
run: npm ci
- name: NPM audit (advisory on PRs)
if: github.event_name == 'pull_request'
run: |
set +e
npm audit --audit-level=moderate
code=$?
set -e
if [ "$code" -ne 0 ]; then
echo "::warning::npm audit reported vulnerabilities (advisory mode on PRs)."
fi
- name: NPM audit (enforced on push)
if: github.event_name == 'push'
run: npm audit --audit-level=critical
- name: Trufflehog git history scan
uses: trufflesecurity/trufflehog@main
with:
extra_args: --only-verified