Add scheduled audit action
This commit is contained in:
parent
f69b42034f
commit
9f4911b4c8
1 changed files with 20 additions and 0 deletions
20
.forgejo/workflows/audit.yaml
Normal file
20
.forgejo/workflows/audit.yaml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
schedule:
|
||||||
|
- cron: "30 4 * * *"
|
||||||
|
|
||||||
|
name: Audit
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Audit
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
- name: Audit
|
||||||
|
run: yarn audit
|
Loading…
Add table
Add a link
Reference in a new issue