Remove onReportImportError handler from TaskComponent #8918
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: | |
| push: | |
| branches: [main, stable, oldstable] | |
| pull_request: | |
| branches: [main, stable, oldstable] | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/*.txt' | |
| schedule: | |
| - cron: '30 5 * * 0' # 5:30h on Sundays | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['javascript'] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: ${{ matrix.language }} | |
| # build between init and analyze ... | |
| - name: Install node | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |