File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ analyze :
9
+ name : Analyze
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ actions : read
13
+ contents : read
14
+ security-events : write
15
+
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ language : [ 'javascript' ]
20
+
21
+ steps :
22
+ - name : Checkout
23
+ uses : actions/checkout@v3
24
+ with :
25
+ # Minimal depth 2 so we can checkout the commit before possible merge commit.
26
+ fetch-depth : 2
27
+
28
+ - name : Initialize CodeQL
29
+ uses : github/codeql-action/init@v2
30
+ with :
31
+ languages : ${{ matrix.language }}
32
+
33
+ - name : Autobuild
34
+ uses : github/codeql-action/autobuild@v2
35
+
36
+ - name : Perform CodeQL Analysis
37
+ uses : github/codeql-action/analyze@v2
38
+ with :
39
+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments