-
-
Notifications
You must be signed in to change notification settings - Fork 61
85 lines (71 loc) · 1.9 KB
/
codeql.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: CodeQL
on:
push:
branches:
- main
- "v*"
pull_request:
# The branches below must be a subset of the branches above
branches:
- main
schedule:
- cron: '24 17 * * 1'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
BUILDCONFIGURATION: Release
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages/
jobs:
analyze_csharp:
name: Analyze C#
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
submodules: recursive
- name: ⚙️ Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp
- name: ⚙️ Install prerequisites
run: |
./init.ps1 -UpgradePrerequisites
dotnet --info
# Print mono version if it is present.
if (Get-Command mono -ErrorAction SilentlyContinue) {
mono --version
}
shell: pwsh
- name: 🛠️ build
run: dotnet build --no-restore -c ${{ env.BUILDCONFIGURATION }}
- name: 🔍 Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: /language:csharp
analyze_javascript:
name: Analyze Typescript
runs-on: ubuntu-latest
timeout-minutes: 60
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: ⚙️ Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: javascript
- name: 🛠️ Autobuild
uses: github/codeql-action/autobuild@v2
- name: 🔍 Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: /language:javascript