CodeQL #4794
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" | |
on: | |
push: | |
branches: [ master, dev ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ dev ] | |
schedule: | |
- cron: '59 23 * * *' | |
jobs: | |
analyze_csharp: | |
name: Analyze Csharp | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: csharp | |
queries: +security-and-quality,security-extended | |
- uses: actions/setup-dotnet@v3.2.0 | |
with: | |
global-json-file: global.json | |
# build LoRa Engine | |
- name: Build LoRa Engine | |
run: dotnet build --configuration Release | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
analyze_javascript: | |
name: Analyze Javascript | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: javascript | |
queries: +security-and-quality,security-extended | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |