Skip to content

feat: development mode #55

feat: development mode

feat: development mode #55

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
concurrency:
group: codeql-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codeql:
name: 🛡️ CodeQL
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ['typescript']
steps:
- name: 📂 Checkout Repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🛠️ Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
config-file: ./.github/codeql/codeql-config.yml
- name: ⚙️ Build Project
uses: github/codeql-action/autobuild@v3
- name: 🔍 Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:${{matrix.language}}'