Skip to content

dependency: update @biomejs/biome from 1.8.1 to 1.8.2 #421

dependency: update @biomejs/biome from 1.8.1 to 1.8.2

dependency: update @biomejs/biome from 1.8.1 to 1.8.2 #421

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- "main"
paths:
- "**.js"
- "**.ts"
- "package.json"
- "pnpm-lock.yaml"
- "*/**.cs"
- "*/**.csproj"
- ".editorconfig"
- "*.props"
- "global.json"
- "nuget.config"
- "*.sln"
pull_request:
paths:
- "**.js"
- "**.ts"
- "package.json"
- "pnpm-lock.yaml"
- "*/**.cs"
- "*/**.csproj"
- ".editorconfig"
- "*.props"
- "global.json"
- "nuget.config"
- "*.sln"
schedule:
- cron: "0 0 */2 * *"
workflow_dispatch:
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
analyzer:
name: "Analyzer"
runs-on: "${{ vars.DEFAULT_UBUNTU }}"
strategy:
matrix:
languages:
- "javascript-typescript"
- "csharp"
steps:
- name: "Set up repository with the latest commit"
uses: "actions/checkout@v4.1.7"
- name: "Set up analyzer"
uses: "github/codeql-action/init@v3.25.10"
with:
languages: "${{ matrix.languages }}"
- name: "Build assemblies"
uses: "github/codeql-action/autobuild@v3.25.10"
- name: "Run analyzer"
uses: "github/codeql-action/analyze@v3.25.10"
with:
category: "/language:${{ matrix.languages }}"