23 lines
392 B
YAML
23 lines
392 B
YAML
name: Scheduled Dependency Check
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "29 3 * * 2"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
dependency-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Audit
|
|
run: npm run audit
|
|
|
|
- name: Outdated report
|
|
run: npm outdated || true
|