File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
name : ci
2
2
on :
3
3
push :
4
- branches : [ release, alpha, beta, next-major ]
4
+ branches : [ release, alpha, beta ]
5
5
pull_request :
6
- branches :
7
- - ' **'
6
+ branches : [ release, alpha, beta ]
8
7
env :
9
8
NODE_VERSION : 16.14.2
10
9
PARSE_SERVER_TEST_TIMEOUT : 20000
11
10
jobs :
11
+ check-code-analysis :
12
+ name : Code Analysis
13
+ runs-on : ubuntu-latest
14
+ permissions :
15
+ actions : read
16
+ contents : read
17
+ security-events : write
18
+ strategy :
19
+ fail-fast : false
20
+ matrix :
21
+ language : [ 'javascript' ]
22
+ steps :
23
+ - name : Checkout repository
24
+ uses : actions/checkout@v3
25
+ - name : Initialize CodeQL
26
+ uses : github/codeql-action/init@v2
27
+ with :
28
+ languages : ${{ matrix.language }}
29
+ source-root : src
30
+ - name : Perform CodeQL Analysis
31
+ uses : github/codeql-action/analyze@v2
12
32
check-ci :
13
33
name : Node Engine Check
14
34
timeout-minutes : 15
You can’t perform that action at this time.
0 commit comments