Skip to content

Audit

Audit #43

Workflow file for this run

name: Audit
# Controls when the workflow will run
on:
schedule:
- cron: "0 5 * * 2" # UTC (Tuesday, 5am UTC)
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "audit"
audit:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 5
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run audit tests
run: npm audit