Vallie Joseph 132a8a43ad .
2023-07-31 17:58:18 +00:00
..
2023-07-31 17:36:20 +00:00
2023-07-28 14:55:49 +00:00
2023-07-31 17:41:01 +00:00
2023-07-31 15:26:49 +00:00
2019-12-16 12:43:21 -05:00
2022-04-18 15:49:18 -04:00
.
2023-07-31 17:58:18 +00:00

@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']);