24 lines
377 B
YAML
24 lines
377 B
YAML
name: Security checks
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
npm-audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
-
|
|
name: NPM audit
|
|
run: npm audit
|