We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc459e6 commit 81b75bcCopy full SHA for 81b75bc
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,34 @@
1
+name: "Code Scanning"
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ # The branches below must be a subset of the branches above
8
9
+ schedule:
10
+ # Runs every Monday morning PST
11
+ - cron: "17 15 * * 1"
12
13
+jobs:
14
+ analyze:
15
+ name: Analyze
16
+ runs-on: ubuntu-20.04
17
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v2
21
22
+ # Initializes the CodeQL tools for scanning.
23
+ - name: Initialize CodeQL
24
+ uses: github/codeql-action/init@v1
25
+ with:
26
+ languages: javascript
27
+ paths-ignore:
28
+ - lib/vscode
29
30
+ - name: Autobuild
31
+ uses: github/codeql-action/autobuild@v1
32
33
+ - name: Perform CodeQL Analysis
34
+ uses: github/codeql-action/analyze@v1
0 commit comments