Skip to content

CodeQL

CodeQL #1785

#
# This file is part of Edgehog.
#
# Copyright 2021 - 2026 SECO Mind Srl
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
name: "CodeQL"
on:
push:
paths:
- "frontend/**"
- ".tool-versions"
- ".github/workflows/frontend-codeql-analysis.yaml"
branches:
- "main"
- "release-*"
pull_request:
paths:
- "frontend/**"
- ".tool-versions"
- ".github/workflows/frontend-codeql-analysis.yaml"
workflow_call:
workflow_dispatch:
schedule:
- cron: "33 5 * * 6"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
permissions:
contents: read
defaults:
run:
shell: bash
working-directory: frontend
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["javascript"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
show-progress: false
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4