Skip to content

Commit

Permalink
print environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Nov 1, 2021
1 parent 94587f2 commit ad2a63b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bots/report-bundle-size.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,13 @@ function validateEnvironment() {
return false;
}

console.log(` GITHUB_TOKEN=${GITHUB_TOKEN}`);
console.log(` GITHUB_OWNER=${GITHUB_OWNER}`);
console.log(` GITHUB_REPO=${GITHUB_REPO}`);
console.log(` GITHUB_PR_NUMBER=${GITHUB_PR_NUMBER}`);
console.log(` GITHUB_REF=${GITHUB_REF}`);
console.log(` GITHUB_SHA=${GITHUB_SHA}`);

return true;
}

Expand Down

0 comments on commit ad2a63b

Please sign in to comment.