0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-06-12 10:13:02 +00:00
Files
jellyfin-vue/.github/workflows/__codeql.yml
2025-06-12 04:16:48 +00:00

41 lines
950 B
YAML

name: GitHub CodeQL 🔬
on:
workflow_call:
inputs:
commit:
required: true
type: string
jobs:
analyze:
name: Analyze ${{ matrix.language }} 🔬
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- javascript-typescript
steps:
- name: Checkout repository ⬇️
uses: actions/checkout@v4.2.2
with:
ref: ${{ inputs.commit }}
show-progress: false
- name: Initialize CodeQL 🛠️
uses: github/codeql-action/init@v3.29.0
with:
queries: security-and-quality
languages: ${{ matrix.language }}
dependency-caching: true
- name: Autobuild 📦
uses: github/codeql-action/autobuild@v3.29.0
- name: Perform CodeQL Analysis 🧪
uses: github/codeql-action/analyze@v3.29.0
with:
category: '/language:${{matrix.language}}'