Stop automatically cancelling the previous Find All References based request when a new one comes in. #8951
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: CI (Mac) | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| inputs: | |
| target-ref: | |
| description: Branch, tag, or SHA to test | |
| required: true | |
| default: main | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| job: | |
| uses: ./.github/workflows/job-compile-and-test.yml | |
| with: | |
| runner-env: macos-15 | |
| platform: mac | |
| checkout-ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.target-ref || github.ref }} | |
| yarn-args: --network-timeout 100000 |