CircleCI migration
Updating snyk orb and using iac test
iac testUse the Snyk orb to only install the Snyk CLI, and then run the Snyk CLI commands in your own steps
version: 2.1
orbs:
node: circleci/node@5
snyk: snyk/[email protected]
jobs:
snyk_scan:
docker:
- image: cimg/node:lts
steps:
- checkout
- run: npm ci
- snyk/install
- run:
command: snyk iac test
name: Run iac test Direct CLI installation without using the Snyk orb
Last updated
Was this helpful?

