Skip to content

CodeQL Workflow

CodeQL Workflow #246

Workflow file for this run

name: "CodeQL Workflow"
on:
pull_request:
branches: ["master", "beta"]
schedule:
- cron: "0 16 * * *"
jobs:
codeql_javascript:
name: "Run CodeQL (JavaScript)"
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript"]
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Run CodeQL Scan
uses: github/codeql-action/analyze@v2