Skip to content

http scanner

http scanner #5

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_and_scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20' # Use a current LTS version
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run VibeSafe Scan (High Only)
# This uses the globally linked bin command setup in package.json
# Or run directly: node dist/index.js scan --high-only
run: npx vibesafe scan --high-only