Initial Coworker app scaffold
This commit is contained in:
22
.gitea/workflows/dependency-check.yml
Normal file
22
.gitea/workflows/dependency-check.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user