File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ push :
5
+ branches : [ main, develop ]
6
+ pull_request :
7
+ branches : [ main, develop ]
8
+
9
+ jobs :
10
+ CodeQL-Build :
11
+ name : Analyze
12
+ runs-on : ubuntu-latest
13
+ permissions :
14
+ security-events : write
15
+
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ language : [ 'javascript' ]
20
+
21
+ steps :
22
+ - name : Checkout repository
23
+ uses : actions/checkout@v3
24
+
25
+ - name : Initialize CodeQL
26
+ uses : github/codeql-action/init@v2
27
+ with :
28
+ languages : ${{ matrix.language }}
29
+
30
+ - name : Perform CodeQL Analysis
31
+ uses : github/codeql-action/analyze@v2
32
+ with :
33
+ category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ concurrency:
6
6
cancel-in-progress : true
7
7
8
8
jobs :
9
- build_and_deploy :
9
+ Validate :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
You can’t perform that action at this time.
0 commit comments