Node Redirect Repro #4
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 Redirect Repro | |
| on: workflow_dispatch | |
| jobs: | |
| test-redirect: | |
| runs-on: ubuntu-latest | |
| env: | |
| ACTIONS_STEP_DEBUG: true | |
| ACTIONS_RUNNER_DEBUG: true | |
| NODETOOL_VERBOSE: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Debug info | |
| run: | | |
| echo "Starting redirect reproduction test" | |
| echo "Date: $(date)" | |
| echo "Cache-bust token: $(date +%s)" | |
| - name: Setup Node (force CDN fresh fetch) | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.16.0?cache=$(date +%s)" | |
| - name: Confirm install | |
| run: | | |
| node -v | |
| which node | |
| - name: Complete | |
| run: echo "Finished test" |