File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed
Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CodeQL
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+ schedule :
11+ - cron : ' 49 21 * * 0'
12+
13+ jobs :
14+ analyze :
15+ name : Analyze
16+ runs-on : ubuntu-latest
17+ permissions :
18+ actions : read
19+ contents : read
20+ security-events : write
21+
22+ strategy :
23+ fail-fast : false
24+ matrix :
25+ language :
26+ - javascript
27+
28+ steps :
29+ - name : Checkout
30+ uses : actions/checkout@v4
31+
32+ - name : Initialize CodeQL
33+ uses : github/codeql-action/init@v2
34+ with :
35+ languages : ${{ matrix.language }}
36+ queries : +security-and-quality
37+
38+ - name : Autobuild
39+ uses : github/codeql-action/autobuild@v2
40+
41+ - name : Perform CodeQL Analysis
42+ uses : github/codeql-action/analyze@v2
43+ with :
44+ category : ' /language:${{ matrix.language }}'
You can’t perform that action at this time.
0 commit comments