Skip to content

FIX missing servlce layer plumbing #192

FIX missing servlce layer plumbing

FIX missing servlce layer plumbing #192

Workflow file for this run

name: CodeQL
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
# Weekly scan every Monday at 08:00 UTC to catch newly-published query updates
- cron: "0 8 * * 1"
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
strategy:
fail-fast: false
matrix:
language: [python, javascript-typescript]
steps:
- uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# Use the security-extended query suite for broader vulnerability coverage
queries: security-extended
# Exclude vendored third-party assets — alerts there are not actionable
config: |
paths-ignore:
- "quadletman/static/vendor"
- name: Autobuild
uses: github/codeql-action/autobuild@v4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"