File tree Expand file tree Collapse file tree 2 files changed +52
-0
lines changed Expand file tree Collapse file tree 2 files changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ paths-ignore :
2+ - " docs/prettify/**/*.*"
3+ - " editor/js/libs/**/*.*"
4+ - " examples/jsm/libs/**/*.*"
5+ - " examples/jsm/loaders/ifc/**/*.*"
6+ - " build/*.*"
7+ - " manual/3rdparty/**/*.*"
Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [ "dev" ]
6+ pull_request :
7+ # The branches below must be a subset of the branches above
8+ branches : [ "dev" ]
9+ schedule :
10+ - cron : ' 29 23 * * 0'
11+ workflow_dispatch :
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 : [ 'javascript' ]
26+
27+ steps :
28+ - name : Checkout repository
29+ uses : actions/checkout@v3
30+
31+ # Initializes the CodeQL tools for scanning.
32+ - name : Initialize CodeQL
33+ uses : github/codeql-action/init@v2
34+ with :
35+ languages : ${{ matrix.language }}
36+ config-file : ./.github/codeql-config.yml
37+ queries : security-and-quality
38+
39+ - name : Autobuild
40+ uses : github/codeql-action/autobuild@v2
41+
42+ - name : Perform CodeQL Analysis
43+ uses : github/codeql-action/analyze@v2
44+ with :
45+ category : " /language:${{matrix.language}}"
You can’t perform that action at this time.
0 commit comments