Update Stack Frame Parsing for Exceptions #178
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: Node.js CI (Windows ARM64) | |
| # NOTE: GitHub does not offer public Windows ARM64 runners. | |
| # The previous version of this workflow used QEMU to emulate ARM64 Linux in | |
| # Docker, which was neither testing Windows nor reliably passing due to | |
| # emulation flakiness. Native ARM64 testing is now covered by the | |
| # node.js-linux-arm64.yml workflow using ubuntu-24.04-arm runners. | |
| # | |
| # This workflow will be enabled once GitHub provides public Windows ARM64 | |
| # runners (or a self-hosted runner is configured). | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| placeholder: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Windows ARM64 testing not yet available | |
| run: | | |
| echo "Skipped: GitHub does not offer public Windows ARM64 runners." | |
| echo "ARM64 testing is covered by the Linux ARM64 workflow (ubuntu-24.04-arm)." | |
| echo "See: https://github.com/actions/runner-images#available-images" |