From 46b3a794df1c9252bde7c943170ced1b5b0af0ca Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 18 Jun 2026 17:01:18 +0200 Subject: [PATCH] CodeQL workflow --- .github/workflows/codeql.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..51f1ca610 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,28 @@ +name: "CodeQL" + +on: + push: + branches: [ep2026] + pull_request: + branches: [ep2026] + schedule: + - cron: "0 0 * * 0" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + security-events: write + strategy: + fail-fast: false + matrix: + language: ["javascript-typescript"] # ← only this, no 'python' + + steps: + - uses: actions/checkout@v4 + - uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + - uses: github/codeql-action/autobuild@v3 + - uses: github/codeql-action/analyze@v3