mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
name: "CodeQL"
|
|
on:
|
|
workflow_call:
|
|
push:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: analyze-${{ matrix.working-directory }}
|
|
runs-on: ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-22.04' }}
|
|
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- language: "javascript-typescript"
|
|
working-directory: "website/"
|
|
- language: "javascript-typescript"
|
|
working-directory: "elixir/apps/web/assets/"
|
|
# TODO
|
|
# - language: 'java-kotlin'
|
|
# working-directory: 'kotlin/android'
|
|
# - language: 'swift'
|
|
# working-directory: 'swift/apple'
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v3
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@v3
|
|
with:
|
|
working-directory: ${{ matrix.working-directory }}
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v3
|
|
with:
|
|
category: "/language:${{matrix.language}}"
|