Fixed an issue with mapped property symbol not displaying added | undefined when its origin symbol was optional
#31642
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@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4.37.8 | |
| with: | |
| languages: go, javascript-typescript | |
| config-file: ./.github/codeql/codeql-configuration.yml | |
| - run: npx hereby build | |
| - uses: github/codeql-action/analyze@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4.37.8 |