We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c3273 commit bb7ef4aCopy full SHA for bb7ef4a
1 file changed
.github/workflows/sca-scan.yml
@@ -16,4 +16,14 @@ jobs:
16
json: true
17
output: snyk.json
18
continue-on-error: true
19
+
20
+ - name: Verify Snyk output exists # ← optional debug step
21
+ run: |
22
+ if [ ! -f snyk.json ]; then
23
+ echo "snyk.json missing — dumping directory contents:"
24
+ ls -la
25
+ exit 1
26
+ fi
27
+ echo "snyk.json found ($(wc -c < snyk.json) bytes)"
28
29
- uses: contentstack/sca-policy@main
0 commit comments