Add audit action #4

Manually merged
MichaelBradley merged 2 commits from actions into main 2025-02-23 04:21:41 -05:00
2 changed files with 25 additions and 0 deletions

View 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

View file

@ -1,6 +1,11 @@
---
on: [push, pull_request]
name: Build
jobs:
build:
name: Build
runs-on: docker
steps:
- name: Checkout