2020-09-05 12:43:05 +00:00
|
|
|
name: Snyk
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Every day
|
2020-09-05 12:47:23 +00:00
|
|
|
- cron: '0 0 * * *'
|
2020-09-05 12:43:05 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
security:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-09-09 05:23:11 +00:00
|
|
|
- name: Use Node.js 12.x
|
2021-02-23 05:51:48 +00:00
|
|
|
uses: actions/setup-node@v2.1.5
|
2020-09-09 05:23:11 +00:00
|
|
|
with:
|
|
|
|
node-version: '12.x'
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: npm install
|
2020-09-05 12:43:05 +00:00
|
|
|
- name: Run Snyk to check for vulnerabilities
|
|
|
|
uses: snyk/actions/node@master
|
|
|
|
env:
|
|
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
|
|
with:
|
|
|
|
command: monitor
|