actions-hugo/node_modules/@actions/exec
Shohei Ueda d46d0aa12e
Refactor: Get the latest version from Homebrew (#28)
Refactoring

* feat: Add reject to Promise
* feat: Add printing inputs
* feat: Add error handling to getLatestVersion()
* feat: show version of Hugo, Go, and Git (Close #23)
* refactor: Get the latest version from Homebrew (Close #26)
* refactor: enhance error message of promise reject

Enhancement for workflow

* gha: Add deps (test-prod job needs test job)
* gha: Fix matrix testing
* gha: comment out Build production step
* gha: remove Dump step

Update README

* docs: update readme
2019-09-18 04:11:47 +09:00
..
lib Migrate javascript action (#21) 2019-09-16 08:27:57 +09:00
LICENSE.md Migrate javascript action (#21) 2019-09-16 08:27:57 +09:00
README.md Migrate javascript action (#21) 2019-09-16 08:27:57 +09:00
package.json Refactor: Get the latest version from Homebrew (#28) 2019-09-18 04:11:47 +09:00

README.md

@actions/exec

Usage

Basic

You can use this package to execute your tools on the command line 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 use it in conjunction with the which function from @actions/io to execute tools that are not in the PATH:

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

const pythonPath: string = await io.which('python', true)

await exec.exec(`"${pythonPath}"`, ['main.py']);