41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
|
name: "CodeQL"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
# The branches below must be a subset of the branches above
|
||
|
branches: [master]
|
||
|
schedule:
|
||
|
- cron: "0 0 * * 0"
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
analyze:
|
||
|
permissions:
|
||
|
security-events: write
|
||
|
name: Analyze
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
language: ["javascript"]
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||
|
|
||
|
- name: Initialize CodeQL
|
||
|
uses: github/codeql-action/init@423a04bb2cb7cd2643007122588f1387778f14d0 # v2.16.5
|
||
|
with:
|
||
|
languages: ${{ matrix.language }}
|
||
|
config-file: ./.github/codeql/codeql-config.yml
|
||
|
|
||
|
# Autobuild attempts to build any compiled languages
|
||
|
- name: Autobuild
|
||
|
uses: github/codeql-action/autobuild@423a04bb2cb7cd2643007122588f1387778f14d0 # v2.16.5
|
||
|
|
||
|
- name: Perform CodeQL Analysis
|
||
|
uses: github/codeql-action/analyze@423a04bb2cb7cd2643007122588f1387778f14d0 # v2.16.5
|