We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 818ff09 commit dee95feCopy full SHA for dee95fe
action.yml
@@ -0,0 +1,19 @@
1
+name: "Snyk Node"
2
+description: "Check your Node application for vulnerabilties using Snyk"
3
+author: "Gareth Rushgrove"
4
+branding:
5
+ icon: "alert-triangle"
6
+ color: "yellow"
7
+inputs:
8
+ command:
9
+ description: "Which Snyk command to run, defaults to test"
10
+ default: test
11
+ args:
12
+ description: "Additional arguments to pass to Snyk"
13
+runs:
14
+ using: "docker"
15
+ image: "docker://snyk/snyk:node"
16
17
+ - snyk
18
+ - ${{ inputs.command }}
19
+ - ${{ inputs.args }}
0 commit comments