Test setup #610
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
# on: | |
# schedule: | |
# - cron: '27 21 * * *' # At 21:27 every day | |
on: | |
push: | |
branches: ['codeql'] | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
# if: github.repository == 'elastic/kibana' # Hack: Do not run on forks | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'javascript' ] | |
branch: [ 'codeql' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yml | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: yarn kbn bootstrap | |
run: | | |
yarn kbn bootstrap --no-validate --no-vscode | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@883d8588e56d1753a8a58c1c86e88976f0c23449 # v3.26.3 | |
# env: | |
# NODE_OPTIONS: "--max-old-space-size=6144" | |
with: | |
category: "/language:${{matrix.language}}" |