File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+ schedule :
9+ - cron : " 0 6 * * 1"
10+
11+ jobs :
12+ analyze :
13+ name : Analyse (${{ matrix.language }})
14+ runs-on : ' ubuntu-latest'
15+ timeout-minutes : 360
16+ permissions :
17+ security-events : write
18+ packages : read
19+ actions : read
20+ contents : read
21+
22+ strategy :
23+ fail-fast : false
24+ matrix :
25+ language : [javascript-typescript]
26+
27+ steps :
28+ - name : Checkout repository
29+ uses : actions/checkout@v4
30+
31+ - name : Initialise CodeQL
32+ uses : github/codeql-action/init@v3
33+ with :
34+ languages : ${{ matrix.language }}
35+ build-mode : ${{ matrix.build-mode }}
36+
37+ - name : Perform CodeQL analysis
38+ uses : github/codeql-action/analyze@v3
39+ with :
40+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments