Skip to content

fix(cli): remove duplicate shebang from source (#4) #17

fix(cli): remove duplicate shebang from source (#4)

fix(cli): remove duplicate shebang from source (#4) #17

Workflow file for this run

name: Security
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * 1' # Weekly Monday 6am UTC
jobs:
audit:
name: Dependency Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm audit --audit-level moderate
self-scan:
name: Self-Scan Skills
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm turbo build
- name: Scan own skills
run: |
node apps/cli/dist/cli.js scan skills/agent-auditor --format json
node apps/cli/dist/cli.js scan skills/agent-intelligence --format json
node apps/cli/dist/cli.js scan skills/skill-security-scanner --format json
node apps/cli/dist/cli.js scan skills/agent-gateway --format json