mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2026-01-11 19:52:54 -08:00
* test: codeql for wikioperation * test: codeql not find suite * Move CodeQL analysis to dedicated workflow Extracted the CodeQL security analysis job from test.yml into a new codeql-analysis.yml workflow file for better separation of concerns and maintainability. * Update codeql-analysis.yml * de * 。
18 lines
365 B
YAML
18 lines
365 B
YAML
name: "TidGi CodeQL Security Analysis"
|
|
|
|
queries:
|
|
- uses: security-extended
|
|
|
|
# Paths to analyze (only source code)
|
|
paths:
|
|
- src
|
|
- scripts
|
|
|
|
# Paths to ignore within the analyzed paths
|
|
# (Excludes test files and mock data from security analysis)
|
|
paths-ignore:
|
|
- '**/__tests__/**'
|
|
- '**/__mocks__/**'
|
|
- '**/*.test.ts'
|
|
- '**/*.test.tsx'
|
|
- '**/*.spec.ts'
|