mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 18:08:17 -07:00
35 lines
894 B
YAML
35 lines
894 B
YAML
name: CodeQL
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, release* ]
|
|
pull_request:
|
|
branches: [ master, release* ]
|
|
schedule:
|
|
- cron: '30 7 * * 6'
|
|
|
|
jobs:
|
|
codeql:
|
|
name: Run CodeQL
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@46ed16ded91731b2df79a2893d3aea8e9f03b5c4 # v2.20.3
|
|
with:
|
|
languages: javascript
|
|
queries: +security-extended
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@46ed16ded91731b2df79a2893d3aea8e9f03b5c4 # v2.20.3
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@46ed16ded91731b2df79a2893d3aea8e9f03b5c4 # v2.20.3
|