Commit 0e07b03 Ilias Tsangaris
authored
1 parent 501e84d commit 0e07b03 Copy full SHA for 0e07b03
File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ master ]
6
+ paths-ignore :
7
+ - ' **/node_modules/**'
8
+
9
+ jobs :
10
+ analyze :
11
+ name : Analyze
12
+ runs-on : ubuntu-latest
13
+ permissions :
14
+ actions : read
15
+ contents : read
16
+ security-events : write
17
+
18
+ strategy :
19
+ fail-fast : false
20
+ matrix :
21
+ language : [ 'javascript', 'python' ]
22
+
23
+ steps :
24
+ - name : Checkout repository
25
+ uses : actions/checkout@v2
26
+
27
+ - name : Initialize CodeQL
28
+ uses : github/codeql-action/init@v1
29
+ with :
30
+ languages : ${{ matrix.language }}
31
+
32
+ - name : Autobuild
33
+ uses : github/codeql-action/autobuild@v1
34
+
35
+ - name : Perform CodeQL Analysis
36
+ uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments