feat: add Media Info, Download, and Copy Stream URL to context menu #634
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub CodeQL 🔬 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
workflow_call: | |
schedule: | |
- cron: "0 0 * * MON,FRI" | |
jobs: | |
analyze: | |
name: Analyze 🔬 | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- "javascript" | |
steps: | |
- name: Checkout repository ⬇️ | |
uses: actions/[email protected] | |
- name: Initialize CodeQL 🛠️ | |
uses: github/codeql-action/init@v2 | |
with: | |
queries: security-and-quality | |
languages: ${{ matrix.language }} | |
- name: Autobuild 📦 | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis 🧪 | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:${{matrix.language}}" |