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.
1 parent 82c3941 commit 978a99bCopy full SHA for 978a99b
.github/workflows/codeql.yml
@@ -0,0 +1,35 @@
1
+name: CodeQL
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: "44 7 * * 1"
10
11
+jobs:
12
+ analyze:
13
+ name: Analyze
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ contents: read
17
+ security-events: write
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ language: [ "javascript" ]
22
+ steps:
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v4
25
26
+ - name: Initialize CodeQL
27
+ uses: github/codeql-action/init@v3
28
+ with:
29
+ languages: ${{ matrix.language }}
30
31
+ - name: Autobuild
32
+ uses: github/codeql-action/autobuild@v3
33
34
+ - name: Perform CodeQL Analysis
35
+ uses: github/codeql-action/analyze@v3
0 commit comments