File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ # # Github workflow code scanning
4+ # Configure this file to setup code scanning for the repository
5+ # Code scanning uses Github actions minutes. To learn more: https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions
6+
7+ on :
8+ push :
9+ branches : [ "master" ]
10+ pull_request :
11+ branches : [ "master" ]
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
29+ uses : actions/checkout@v3
30+
31+ - name : Initialize CodeQL
32+ uses : github/codeql-action/init@v2
33+ with :
34+ languages : ${{ matrix.language }}
35+ queries : +security-and-quality
36+
37+ - name : Autobuild
38+ uses : github/codeql-action/autobuild@v2
39+
40+ - name : Perform CodeQL Analysis
41+ uses : github/codeql-action/analyze@v2
42+ with :
43+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments