Skip to content
Prev Previous commit
Next Next commit
Updated config.yml
  • Loading branch information
akanchhaS committed Feb 25, 2021
commit 2c54c9fe2764743d39b9f8dffc63ca092dfcff0b
9 changes: 7 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ version: 2.1
orbs:
snyk: snyk/[email protected]

workflows:
test-env-vars:
jobs:
- build:
context: Snyk # has an env var called Snyk-Token
jobs: # a collection of steps
build: # runs not using Workflows must have a `build` job as entry point #directory where steps will run
working_directory: ~/goof
Expand All @@ -18,15 +23,15 @@ jobs: # a collection of steps
#- run:
# name: echo "build Docker image"
# command: 'docker build -t my-new-container-goof-image .'

- snyk/scan:
fail-on-issues: false
monitor-on-build: true
token-variable: SNYKTOKEN
organization: panda-not-omar
project: circleCi-goof
severity-threshold: high
workflows: null

#workflows:
#node-tests:
#jobs:
Expand Down