Skip to content

Commit 0be7e79

Browse files
committed
Run dependencies audit every day
1 parent 8f1d8d5 commit 0be7e79

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/audit.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Daily Loaders Test
2+
on:
3+
schedule:
4+
- cron: '00 23 * * *' # Runs at midnight UTC every day
5+
jobs:
6+
test:
7+
name: Test
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout the repository
11+
uses: actions/checkout@v4
12+
- name: Initialize Node.js
13+
uses: ./.github/actions/init-node
14+
- name: Loaders Test
15+
run: node --run test:audit

0 commit comments

Comments
 (0)