Procedurally generates a radio weather report
1name: NPM Audit Check
2
3on:
4 push:
5 branches: [ master ]
6 pull_request:
7 branches: [ master ]
8 schedule:
9 - cron: '15 16 * * 5'
10
11jobs:
12
13 npm_audit:
14 name: Check NPM audit
15 runs-on: ubuntu-latest
16 timeout-minutes: 20
17 strategy:
18 fail-fast: true
19 permissions:
20 contents: read
21
22 steps:
23 - name: Checkout repository
24 uses: https://github.com/actions/checkout@v4
25
26 - name: NPM Audit
27 run: npm audit