Skip to content

Commit

Permalink
feat: add node executor (#38)
Browse files Browse the repository at this point in the history
Docker executor with integrated Gitleaks, Semgrep, and Trivy based
on the Studion Node.js image with Infisical (`studiondev/node-secrets`).
  • Loading branch information
droguljic authored Nov 7, 2024
1 parent 47fd5bb commit 3b3791f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/executors/node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
description: >
Docker executor integrating a suite of security tools for vulnerability
detection within CircleCI Node.js pipelines.
parameters:
tag:
type: string
default: lts
description: >
Choose a specific studiondev/node-security image tag:
https://hub.docker.com/r/studiondev/node-security/tags
resource_class:
type: enum
enum: ['small', 'medium', 'medium+', 'large', 'xlarge', '2xlarge', '2xlarge+']
default: 'medium'
description: Choose the executor resource class

docker:
- image: studiondev/node-security:<<parameters.tag>>
resource_class: <<parameters.resource_class>>

0 comments on commit 3b3791f

Please sign in to comment.