Skip to content

ci: ignore vendored JavaScript in CodeQL #2

ci: ignore vendored JavaScript in CodeQL

ci: ignore vendored JavaScript in CodeQL #2

Workflow file for this run

---
name: CodeQL
"on":
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
schedule:
- cron: "20 14 * * 1"
concurrency:
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
actions: read
contents: read
packages: read
security-events: write
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-24.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
language:
- go
- javascript-typescript
steps:
# actions/checkout v6.0.3
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
persist-credentials: false
- name: Initialize CodeQL
# github/codeql-action v4.36.2
# yamllint disable-line rule:line-length
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
- name: Autobuild
if: matrix.language == 'go'
# github/codeql-action v4.36.2
# yamllint disable-line rule:line-length
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
- name: Perform CodeQL Analysis
# github/codeql-action v4.36.2
# yamllint disable-line rule:line-length
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
with:
category: "/language:${{ matrix.language }}"