setup-deno/node_modules/@actions/exec
Luca Casonato 8e9de219f8
chore: update dependencies (#38)
2022-10-17 12:03:20 +02:00
..
lib chore: update dependencies (#38) 2022-10-17 12:03:20 +02:00
LICENSE.md chore: update dependencies (#38) 2022-10-17 12:03:20 +02:00
README.md Initial pass 2021-04-10 02:16:12 +02:00
package.json chore: update dependencies (#38) 2022-10-17 12:03:20 +02:00

README.md

@actions/exec

Usage

Basic

You can use this package to execute tools in a cross platform way:

const exec = require('@actions/exec');

await exec.exec('node index.js');

Args

You can also pass in arg arrays:

const exec = require('@actions/exec');

await exec.exec('node', ['index.js', 'foo=bar']);

Output/options

Capture output or specify other options:

const exec = require('@actions/exec');

let myOutput = '';
let myError = '';

const options = {};
options.listeners = {
  stdout: (data: Buffer) => {
    myOutput += data.toString();
  },
  stderr: (data: Buffer) => {
    myError += data.toString();
  }
};
options.cwd = './lib';

await exec.exec('node', ['index.js', 'foo=bar'], options);

Exec tools not in the PATH

You can specify the full path for tools not in the PATH:

const exec = require('@actions/exec');

await exec.exec('"/path/to/my-tool"', ['arg1']);