.github/workflows/codeql.yml
Metadata
- Purpose: CI/CD workflow definition for repository automation.
- Domain:
automation - Language:
yaml - Bytes: 674
- Lines: 32
- Content hash (short):
61d47eea - Source (start): .github/workflows/codeql.yml:1
- Source (end): .github/workflows/codeql.yml:32
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
name: CodeQL
on:
workflow_dispatch:
jobs:
analyze:
if: vars.ENABLE_CODEQL == 'true'
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript-typescript"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}