Skip to content

Security check

Security check #136

name: Security check
on:
schedule:
- cron: '0 10 * * 1'
jobs:
security-check:
name: Analyze the source code
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Setup Nodejs ${{ inputs.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node-version }}
- name: Install dependencies
run: yarn install --ignore-engines --frozen-lockfile
- name: Checks for known security issues with the installed packages
run: yarn audit