We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38983e0 commit 7d99334Copy full SHA for 7d99334
2 files changed
.github/codeql/codeql-config.yml
@@ -0,0 +1,4 @@
1
+paths:
2
+ - src
3
+ - scripts
4
+ - tests
.github/workflows/codeql.yml
@@ -0,0 +1,24 @@
+name: CodeQL
+
+on:
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
+ schedule:
9
+ - cron: '0 8 * * 0'
10
+ workflow_dispatch:
11
12
+jobs:
13
+ analyze:
14
+ name: Analyze
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ security-events: write
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: github/codeql-action/init@v4
21
+ with:
22
+ languages: javascript-typescript
23
+ config-file: .github/codeql/codeql-config.yml
24
+ - uses: github/codeql-action/analyze@v4
0 commit comments