Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

CodeQL

CodeQL #35

name: CodeQL
on:
workflow_dispatch:
workflow_call:
schedule:
- cron: '31 7 * * 3'
jobs:
analyze:
name: analyze
runs-on: luminar-linux-x64-x1
continue-on-error: true
permissions:
actions: read
checks: write
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language:
- TypeScript
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
source-root: .
- name: Autobuild
id: autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@v3