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
+
3
+ on :
4
+ push :
5
+ branches : [ "master" ]
6
+ pull_request :
7
+ branches : [ "master" ]
8
+ schedule :
9
+ - cron : ' 0 0 1 * *'
10
+ workflow_dispatch :
11
+
12
+ jobs :
13
+ analyze :
14
+ name : Analyze
15
+ runs-on : ubuntu-latest
16
+ permissions :
17
+ security-events : write
18
+
19
+ strategy :
20
+ fail-fast : false
21
+ matrix :
22
+ language : [ 'javascript-typescript' ]
23
+
24
+ steps :
25
+ - name : Checkout repository
26
+ uses : actions/checkout@v4
27
+
28
+ # Initializes the CodeQL tools for scanning.
29
+ - name : Initialize CodeQL
30
+ uses : github/codeql-action/init@v3
31
+ with :
32
+ languages : ${{ matrix.language }}
33
+ queries : +security-and-quality
34
+
35
+ - name : Autobuild
36
+ uses : github/codeql-action/autobuild@v3
37
+
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