We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcaaaf1 + a3bbb77 commit d16da3bCopy full SHA for d16da3b
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,32 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 0 * * *"
7
8
+jobs:
9
+ analyze:
10
+ name: Analyze
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ actions: read
14
+ contents: read
15
+ security-events: write
16
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ language: [ 'javascript' ]
21
22
+ steps:
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v3
25
26
+ - name: Initialize CodeQL
27
+ uses: github/codeql-action/init@v2
28
+ with:
29
+ languages: ${{ matrix.language }}
30
31
+ - name: Perform CodeQL Analysis
32
+ uses: github/codeql-action/analyze@v2
0 commit comments