File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ' CI'
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - ' **'
7
+
8
+ jobs :
9
+ analyze :
10
+ name : Analyze (${{matrix.language}})
11
+ runs-on : ${{(matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest'}}
12
+ timeout-minutes : ${{(matrix.language == 'swift' && 120) || 360}}
13
+ permissions :
14
+ security-events : write
15
+ packages : read
16
+ actions : read
17
+ contents : read
18
+
19
+ strategy :
20
+ fail-fast : false
21
+ matrix :
22
+ include :
23
+ - language : javascript-typescript
24
+ build-mode : none
25
+ steps :
26
+ - name : Checkout current repository
27
+ uses : actions/checkout@v4
28
+
29
+ - name : Initialize CodeQL
30
+ uses : github/codeql-action/init@v3
31
+ with :
32
+ languages : ${{matrix.language}}
33
+ build-mode : ${{matrix.build-mode}}
34
+ config-file : ./codeql-config.yml
35
+
36
+ - name : Perform CodeQL Analysis
37
+ uses : github/codeql-action/analyze@v3
38
+ with :
39
+ category : ' /language:${{matrix.language}}'
40
+ upload : ' never'
You can’t perform that action at this time.
0 commit comments