We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 591b088 commit 46b3a79Copy full SHA for 46b3a79
1 file changed
.github/workflows/codeql.yml
@@ -0,0 +1,28 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ push:
5
+ branches: [ep2026]
6
+ pull_request:
7
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