workaround node & npm issues (#5825)
- upgrade GitHub Actions dependencies - workaround `sucrase` issues
This commit is contained in:
@@ -63,7 +63,10 @@ if (typeof phantom == "undefined") {
|
||||
|
||||
function npm(args, done) {
|
||||
args.push("--loglevel=error");
|
||||
child_process.spawn(cmd, args, { stdio: [ "ignore", 1, 2 ] }).on("exit", done);
|
||||
child_process.spawn(cmd, args, {
|
||||
shell: true,
|
||||
stdio: [ "ignore", 1, 2 ],
|
||||
}).on("exit", done);
|
||||
}
|
||||
|
||||
(function install() {
|
||||
|
||||
Reference in New Issue
Block a user