fix(templates): modify cli to add docs while scaffolding application #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: snyk | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
security: | |
runs-on: [self-hosted, linux, codebuild] | |
name: snyk | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Vulnerability scan | |
uses: snyk/actions/iac@master | |
with: | |
command: monitor | |
args: --severity-threshold=low | |
- name: Set up Node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: install Snyk CLI | |
run: npm install -g snyk | |
- uses: actions/checkout@master | |
- name: snyk monitor | |
run: snyk test --report | |
env: | |
SNYK_TOKEN: ${{ secrets.ARC_SNYK_TOKEN }} |