File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-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
+
9
+ jobs :
10
+ codeql-analyze :
11
+ name : " CodeQL Analyze"
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - name : Checkout repository
16
+ uses : actions/checkout@v2
17
+
18
+ # Initializes the CodeQL tools for scanning.
19
+ - name : Initialize CodeQL
20
+ uses : github/codeql-action/init@v1
21
+ with :
22
+ languages : ' javascript'
23
+ # If you wish to specify custom queries, you can do so here or in a config file.
24
+ # By default, queries listed here will override any specified in a config file.
25
+ # Prefix the list here with "+" to use these queries and those in the config file.
26
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
27
+
28
+ # ℹ️ Command-line programs to run using the OS shell.
29
+ # 📚 https://git.io/JvXDl
30
+
31
+ - name : Perform CodeQL Analysis
32
+ uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments