Skip to content

Commit 8aacf4e

Browse files
chore(security): add weekly + PR malware scan workflow
1 parent eca3449 commit 8aacf4e

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/malware-scan.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: malware-scan
2+
3+
on:
4+
pull_request:
5+
schedule:
6+
- cron: "16 4 * * 1"
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
scan:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
17+
- name: Scan for injected malware
18+
run: node scripts/scan-malware.cjs

0 commit comments

Comments
 (0)