Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Snyk test/monitor for web3-react + exclude workspace unmet deps #835

Merged
merged 10 commits into from
Jul 6, 2023
45 changes: 45 additions & 0 deletions .github/workflows/snyk_sca_scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Snyk Code Security

on:
pull_request:
branches:
- '**'
push:
branches:
- main
paths-ignore:
- '**/*.md'

jobs:
open-source:
zzmp marked this conversation as resolved.
Show resolved Hide resolved
name: '🔒 Open Source Scan'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- run: yarn
- run: yarn install

- uses: actions/checkout@v2
pwnslinger marked this conversation as resolved.
Show resolved Hide resolved
- name: Run Snyk to check for known vulnerabilities in software supply chain
pwnslinger marked this conversation as resolved.
Show resolved Hide resolved
uses: snyk/actions/node@0e928f3e9ae859e2b95ac2b89af55d7b6434244d
#continue-on-error: true
pwnslinger marked this conversation as resolved.
Show resolved Hide resolved
env:
SNYK_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
with:
command: test
# include devDependencies to deps list for Snyk dep-graph
args: --dev --severity-threshold=medium

- name: Run Snyk monitor to upload the latest snapshot
uses: snyk/actions/node@0e928f3e9ae859e2b95ac2b89af55d7b6434244d
#continue-on-error: true
pwnslinger marked this conversation as resolved.
Show resolved Hide resolved
env:
SNYK_TOKEN: ${{ secrets.SNYK_API_TOKEN }}
with:
command: monitor
# include devDependencies to deps list for Snyk dep-graph
pwnslinger marked this conversation as resolved.
Show resolved Hide resolved
args: --dev --severity-threshold=medium
8 changes: 8 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.25.0
ignore: {}
patch: {}
exclude:
global:
- packages/**
- examples/**