Files
WatchLink/.gitea/workflows/dependency-check.yml
MrSphay d3e84feedd
Some checks failed
Build / build (push) Failing after 1m29s
Release Dry Run / release-dry-run (push) Successful in 1m24s
Template Compliance / compliance (push) Failing after 5s
Initial WatchLink scaffold
2026-05-15 03:11:41 +02:00

28 lines
509 B
YAML

name: Dependency Check
on:
schedule:
- cron: "43 5 * * 3"
workflow_dispatch:
jobs:
dependencies:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Audit
run: npm audit --omit=dev --audit-level=high
- name: Outdated report
run: npm outdated || true