feat: Add Expand all / Collapse all controls to Configuration Builder #1515
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "25 12 * * 2" # weekly at 12:25 UTC on Tuesday | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read # Checkout the repository source | |
| jobs: | |
| analyze: | |
| name: Analyze (${{ matrix.language }}) | |
| if: | |
| github.event_name != 'schedule' || github.repository == | |
| 'open-telemetry/opentelemetry-ecosystem-explorer' | |
| permissions: | |
| contents: read # Checkout the repository source for analysis | |
| actions: read # for github/codeql-action/init to get workflow details | |
| security-events: write # for github/codeql-action/analyze to upload SARIF results | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - language: actions | |
| - language: python | |
| - language: javascript-typescript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| # Setup bun for JavaScript/TypeScript analysis | |
| - name: Setup bun | |
| if: matrix.language == 'javascript-typescript' | |
| uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0 | |
| with: | |
| bun-version-file: .bun-version | |
| - name: Install dependencies | |
| if: matrix.language == 'javascript-typescript' | |
| run: bun install --frozen-lockfile | |
| working-directory: ecosystem-explorer | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Build TypeScript | |
| if: matrix.language == 'javascript-typescript' | |
| run: bun run typecheck | |
| working-directory: ecosystem-explorer | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0 | |
| with: | |
| category: "/language:${{matrix.language}}" |