File tree 1 file changed +42
-0
lines changed 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL Advanced"
2
+
3
+ on :
4
+ push :
5
+ branches : [ "develop", "master" ]
6
+ pull_request :
7
+ branches : [ "develop", "master" ]
8
+ schedule :
9
+ - cron : ' 19 2 * * 5'
10
+
11
+ jobs :
12
+ analyze :
13
+ name : Analyze (${{ matrix.language }})
14
+ runs-on : ubuntu-latest
15
+ permissions :
16
+ # required for all workflows
17
+ security-events : write
18
+
19
+ # required to fetch internal or private CodeQL packs
20
+ packages : read
21
+
22
+ strategy :
23
+ fail-fast : false
24
+ matrix :
25
+ include :
26
+ - language : javascript-typescript
27
+ build-mode : none
28
+ steps :
29
+ - name : Checkout repository
30
+ uses : actions/checkout@v4
31
+
32
+ - name : Initialize CodeQL
33
+ uses : github/codeql-action/init@v3
34
+ with :
35
+ languages : ${{ matrix.language }}
36
+ build-mode : ${{ matrix.build-mode }}
37
+ queries : security-extended
38
+
39
+ - name : Perform CodeQL Analysis
40
+ uses : github/codeql-action/analyze@v3
41
+ with :
42
+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments