File tree 1 file changed +41
-0
lines changed
1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+ on :
3
+ push :
4
+ branches : [ "master" ]
5
+ pull_request :
6
+ branches : [ "master" ]
7
+ schedule :
8
+ - cron : ' 0 22 * * SUN'
9
+
10
+ jobs :
11
+ analyze :
12
+ name : Analyze (${{ matrix.language }})
13
+ runs-on : ' ubuntu-latest'
14
+ timeout-minutes : 360
15
+ permissions :
16
+ security-events : write
17
+ packages : read
18
+ actions : read
19
+ contents : read
20
+ strategy :
21
+ fail-fast : false
22
+ matrix :
23
+ include :
24
+ - language : javascript-typescript
25
+ build-mode : none
26
+ steps :
27
+ - name : Checkout repository
28
+ uses : actions/checkout@v4
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 : |
35
+ paths-ignore:
36
+ - '**/*.spec.ts'
37
+ - scripts
38
+ - name : Perform CodeQL Analysis
39
+ uses : github/codeql-action/analyze@v3
40
+ with :
41
+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments