Skip to content

CodeQL

CodeQL #46

Workflow file for this run

name: "CodeQL"
on:
pull_request:
branches:
- develop
paths:
- .github/workflows/codeql.yml
- '**.ts'
schedule:
- cron: '45 0 * * 1'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
timeout-minutes: 5
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.6
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"