-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (32 loc) · 805 Bytes
/
codeql.yml
File metadata and controls
40 lines (32 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CodeQL
on:
push:
branches:
- main
pull_request:
schedule:
# Run weekly on Monday at 08:00 UTC to catch newly-disclosed vulnerabilities.
- cron: "0 8 * * 1"
jobs:
analyze:
name: Analyze (typescript)
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
- name: Install dependencies
run: npm ci
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: javascript-typescript
- name: Build plugin
run: npm run build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4