File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CodeQL
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+ push :
8+ branches :
9+ - main
10+ schedule :
11+ - cron : ' 31 7 * * 3'
12+
13+ permissions :
14+ actions : read
15+ checks : write
16+ contents : read
17+ security-events : write
18+
19+ jobs :
20+ analyze :
21+ name : Analyze
22+ runs-on : ubuntu-latest
23+
24+ strategy :
25+ fail-fast : false
26+ matrix :
27+ language :
28+ - TypeScript
29+
30+ steps :
31+ - name : Checkout
32+ id : checkout
33+ uses : actions/checkout@v4
34+
35+ - name : Initialize CodeQL
36+ id : initialize
37+ uses : github/codeql-action/init@v3
38+ with :
39+ languages : ${{ matrix.language }}
40+ source-root : src
41+
42+ - name : Autobuild
43+ id : autobuild
44+ uses : github/codeql-action/autobuild@v3
45+
46+ - name : Perform CodeQL Analysis
47+ id : analyze
48+ uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments