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 d0f1793 commit 43ccd59Copy full SHA for 43ccd59
.github/codeql-config.yml
@@ -1,8 +1,8 @@
1
+name: "Custom CodeQL Config"
2
+
3
paths:
- - "src"
4
+ - "src/"
5
-paths-ignore:
- - "node_modules"
6
- - "dist"
7
- - "tests"
8
- - "**/*.spec.ts"
+queries:
+ - uses: security-extended
+ - uses: security-and-quality
.github/workflows/codeql.yml
@@ -14,6 +14,14 @@ jobs:
14
- name: Checkout repository
15
uses: actions/checkout@v3
16
17
+ - name: Cache CodeQL Database
18
+ uses: actions/cache@v3
19
+ with:
20
+ path: ~/codeql-db # Store the CodeQL database
21
+ key: codeql-db-${{ runner.os }}-${{ github.sha }}
22
+ restore-keys: |
23
+ codeql-db-${{ runner.os }}-
24
25
- name: Initialize CodeQL
26
uses: github/codeql-action/init@v3
27
with:
0 commit comments