Skip to content

Commit d2235e9

Browse files
committed
Fix Snyk args path for CI scan
1 parent c8e1eaa commit d2235e9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/snyk.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Snyk Vulnerability Scan
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
snyk:
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '20'
19+
node-version: "20"
2020

2121
- name: Install dependencies
2222
run: npm install
@@ -26,4 +26,4 @@ jobs:
2626
env:
2727
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
2828
with:
29-
args: test --severity-threshold=high
29+
args: --severity-threshold=high

0 commit comments

Comments
 (0)