CodeQL Advanced #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL Advanced" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '36 3 * * 2' | |
jobs: | |
analyze: | |
name: Analyze (${{ matrix.language }}) | |
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} | |
permissions: | |
# required for all workflows | |
security-events: write | |
# required to fetch internal or private CodeQL packs | |
packages: read | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- language: csharp | |
build-mode: manual | |
- language: javascript-typescript | |
build-mode: none | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# sets up .NET SDK | |
- name: Setup .NET Core SDK | |
uses: actions/[email protected] | |
with: | |
global-json-file: ./global.json | |
- name: Install WASM workload | |
run: dotnet workload install wasm-tools | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
build-mode: ${{ matrix.build-mode }} | |
- name: Dotnet Restore | |
if: matrix.build-mode == 'manual' && matrix.language == 'csharp' | |
run: dotnet restore Pkmds.Web/Pkmds.Web.csproj | |
- name: Dotnet Build | |
if: matrix.build-mode == 'manual' && matrix.language == 'csharp' | |
run: dotnet build Pkmds.Web/Pkmds.Web.csproj | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |