Fixed a crash related to variadic tuple elements with intersections containing InstantiableNonPrimitive
#32028
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: | |
| push: | |
| branches: [main, main-ts7, ts7-release, release-*] | |
| pull_request: | |
| branches: [main, main-ts7, ts7-release, release-*] | |
| schedule: | |
| - cron: '30 1 * * 0' | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| if: github.repository == 'microsoft/TypeScript' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 24 | |
| - uses: ./.github/actions/setup-go | |
| - run: npm ci | |
| - uses: github/codeql-action/init@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 | |
| with: | |
| languages: go, javascript-typescript | |
| config-file: ./.github/codeql/codeql-configuration.yml | |
| - run: npx hereby build | |
| - uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9 |