π config(ci): Fix coverage upload. #4575
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: ci:codeql | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
schedule: | |
- cron: '0 2 * * 0' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
CodeQL-Build: | |
name: Continuous integration (CodeQL) | |
strategy: | |
matrix: | |
language: | |
- javascript-typescript | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
with: | |
# Fetch immediate parents so that we can checkout | |
# the head if this is a PR. | |
fetch-depth: 2 | |
- name: Initialize CodeQL πΎ | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Run CodeQL analysis π¬ | |
uses: github/codeql-action/analyze@v3 |