From 3cae9723494359a95a4516efb497af9eecdfd07b Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Mon, 29 Nov 2021 16:19:16 -0500 Subject: [PATCH] print current Node version inside script (#23182) --- .github/workflows/staging-deploy-pr.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/staging-deploy-pr.yml b/.github/workflows/staging-deploy-pr.yml index 958e6c2c1e..8df7e17627 100644 --- a/.github/workflows/staging-deploy-pr.yml +++ b/.github/workflows/staging-deploy-pr.yml @@ -67,6 +67,10 @@ jobs: BUILD_ACTIONS_RUN_ID: ${{ env.BUILD_ACTIONS_RUN_ID }} with: script: | + + // Curious about what version of node you get + console.log('Node version:', process.version) + // In order to find out the PR info for a forked repo, we must query // the API for more info based on the originating workflow run const { BUILD_ACTIONS_RUN_ID } = process.env