Skip to content

Commit 46b3a79

Browse files
committed
CodeQL workflow
1 parent 591b088 commit 46b3a79

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ep2026]
6+
pull_request:
7+
branches: [ep2026]
8+
schedule:
9+
- cron: "0 0 * * 0"
10+
11+
jobs:
12+
analyze:
13+
name: Analyze
14+
runs-on: ubuntu-latest
15+
permissions:
16+
security-events: write
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
language: ["javascript-typescript"] # ← only this, no 'python'
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: github/codeql-action/init@v3
25+
with:
26+
languages: ${{ matrix.language }}
27+
- uses: github/codeql-action/autobuild@v3
28+
- uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)