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