2 parents aece8a0 + 006f20b commit 47b1ffcCopy full SHA for 47b1ffc
1 file changed
.github/workflows/codeql.yml
@@ -0,0 +1,33 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ push:
5
+ branches: [ "main", "master" ]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '0 0 * * 0'
10
11
+jobs:
12
+ analyze:
13
+ name: Analyze
14
+ runs-on: ubuntu-latest
15
+ permissions:
16
+ actions: read
17
+ contents: read
18
+ security-events: write
19
20
+ steps:
21
+ - name: Checkout repository
22
+ uses: actions/checkout@v4
23
24
+ - name: Initialize CodeQL
25
+ uses: github/codeql-action/init@v3
26
+ with:
27
+ languages: javascript
28
29
+ - name: Autobuild
30
+ uses: github/codeql-action/autobuild@v3
31
32
+ - name: Perform CodeQL Analysis
33
+ uses: github/codeql-action/analyze@v3
0 commit comments