Skip to content

Daily npm audit

Daily npm audit #46

# npm auditを毎日18時(JST)に実行する
name: Daily npm audit
on:
schedule:
# Runs at every 9:00(UTC) of every day
- cron: '0 9 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN
permissions: {}
jobs:
# Check job
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- name: Check dependencies
run: npm audit