Skip to content

Add blog post on making Valibot easier for coding agents #293

Add blog post on making Valibot easier for coding agents

Add blog post on making Valibot easier for coding agents #293

Workflow file for this run

name: Security
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
scan:
name: Scan dependencies
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Scan for vulnerabilities
uses: OWASP/cve-lite-cli@v1
with:
path: .
fail-on: critical
verbose: 'true'
sarif: 'true'
- name: Upload SARIF to GitHub
uses: github/codeql-action/upload-sarif@v4
if: always()
with:
sarif_file: ${{ github.workspace }}