- Added workflow_dispatch to audit.yml, ci-cd.yml, ci.yml, cli-level1-tests.yml, security-scanning.yml, and test.yml - Added push trigger to fix.yml (was workflow_dispatch only) - Enables manual workflow runs from Gitea UI for all CI/CD pipelines
14 lines
187 B
YAML
14 lines
187 B
YAML
name: security
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: debian
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: npm install
|
|
- run: npm audit || true
|