Compare commits
2 commits
f119e4b4a2
...
9f4911b4c8
Author | SHA1 | Date | |
---|---|---|---|
9f4911b4c8 | |||
f69b42034f |
2 changed files with 25 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
|
|
@ -1,6 +1,11 @@
|
|||
---
|
||||
on: [push, pull_request]
|
||||
|
||||
name: Build
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue