Skip to content

Node Redirect Repro

Node Redirect Repro #4

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"