-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (53 loc) · 1.93 KB
/
codeql.yml
File metadata and controls
60 lines (53 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# SPDX-License-Identifier: PMPL-1.0-or-later
name: CodeQL Security Analysis
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
schedule:
- cron: '0 6 * * 1'
permissions:
contents: read
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# This repo is a declarative grammar extension with no JS/TS sources.
# CodeQL errors out ("no code found") when there is nothing to scan,
# so detect presence first and skip cleanly when absent. The step
# stays here so analysis activates automatically if JS/TS is added.
- name: Detect JavaScript/TypeScript sources
id: detect
run: |
if find . -path ./.git -prune -o -type f \
\( -name '*.ts' -o -name '*.tsx' -o -name '*.js' \
-o -name '*.jsx' -o -name '*.mjs' -o -name '*.cjs' \) \
-print | grep -q .; then
echo "present=true" >> "$GITHUB_OUTPUT"
else
echo "present=false" >> "$GITHUB_OUTPUT"
echo "::notice::No JavaScript/TypeScript sources found — skipping CodeQL analysis."
fi
- name: Initialize CodeQL
if: steps.detect.outputs.present == 'true'
uses: github/codeql-action/init@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.28.1
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Perform CodeQL Analysis
if: steps.detect.outputs.present == 'true'
uses: github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98 # v3.28.1
with:
category: "/language:${{ matrix.language }}"