From 0c1ab5aa6929b41c904406bab184bda77658cda8 Mon Sep 17 00:00:00 2001 From: bikochan Date: Thu, 22 Feb 2024 16:51:45 +0000 Subject: [PATCH] feat: add install step to allow security_scan to complete --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 429d7d2..f0a8615 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,13 @@ version: 2.1 orbs: prodsec: snyk/prodsec-orb@1 +commands: + install: + steps: + - run: + name: Install + command: npm install + jobs: security-scans: resource_class: small @@ -10,6 +17,7 @@ jobs: - image: cimg/base:stable steps: - checkout + - install - prodsec/security_scans: mode: auto