Skip to content

EK-34: Add list of drawing objects #851

EK-34: Add list of drawing objects

EK-34: Add list of drawing objects #851

Workflow file for this run

name: 'CodeQL'
on:
workflow_dispatch:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
schedule:
- cron: '42 6 * * FRI'
concurrency:
group: ${{ github.workflow }}-${{ ( github.ref == 'refs/heads/main' || github.ref == 'refs/heads/release' ) && format('ci-main-{0}', github.sha) || format('ci-main-{0}', github.ref) }}
cancel-in-progress: true
jobs:
analyze:
name: 'Analyze'
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
packages: read
strategy:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
steps:
- uses: actions/checkout@v4
- name: 'Initialize CodeQL'
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
config-file: .github/codeql-config.yml
- name: 'Perform CodeQL Analysis'
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"