Skip to content

feat(wrapper): add scan-option parity for skills and clawhub #95

feat(wrapper): add scan-option parity for skills and clawhub

feat(wrapper): add scan-option parity for skills and clawhub #95

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "23 4 * * 1"
permissions:
actions: read
contents: read
security-events: write
concurrency:
group: codeql-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: analyze (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
language:
- javascript-typescript
- actions
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node
if: matrix.language == 'javascript-typescript'
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: npm
- name: Install dependencies
if: matrix.language == 'javascript-typescript'
run: npm ci
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: security-extended
- name: Analyze
uses: github/codeql-action/analyze@v4
with:
category: /language:${{ matrix.language }}