1
0
Fork 0
mirror of https://github.com/actions/setup-node synced 2025-04-09 18:35:51 +00:00

fixup! feat: set node-version action output

This commit is contained in:
Filip Skokan 2020-07-17 12:58:14 +02:00
parent 439cc13699
commit 5c741a4009
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View file

@ -4651,7 +4651,7 @@ function run() {
const checkLatest = (core.getInput('check-latest') || 'false').toUpperCase() === 'TRUE';
yield installer.getNode(version, stable, checkLatest, auth);
}
// Output version of node and npm that are being used
// Output version of node is being used
let installedVersion = '';
yield exec.exec('node', ['--version'], {
listeners: {

View file

@ -25,7 +25,7 @@ export async function run() {
await installer.getNode(version, stable, checkLatest, auth);
}
// Output version of node and npm that are being used
// Output version of node is being used
let installedVersion = '';
await exec.exec('node', ['--version'], {
listeners: {