We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8efc6dc commit 3b5f6b8Copy full SHA for 3b5f6b8
.github/workflows/codeql.yml
@@ -0,0 +1,39 @@
1
+name: CodeQL
2
+
3
+on:
4
+ push:
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:
21
+ - ruby
22
+ - javascript-typescript
23
24
+ steps:
25
+ - name: Checkout repository
26
+ uses: actions/checkout@v5
27
+ with:
28
+ submodules: recursive
29
30
+ - name: Initialize CodeQL
31
+ uses: github/codeql-action/init@v4
32
33
+ languages: ${{ matrix.language }}
34
+ queries: security-and-quality
35
36
+ - name: Perform CodeQL analysis
37
+ uses: github/codeql-action/analyze@v4
38
39
+ category: '/language:${{matrix.language}}'
0 commit comments