mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 09:39:11 +08:00
fix: add pnpm to PATH
This commit is contained in:
parent
15569a497d
commit
eb99e9e4c7
@ -1,3 +1,4 @@
|
||||
import * as core from '@actions/core'
|
||||
import { spawn } from 'child_process'
|
||||
import { execPath } from 'process'
|
||||
import { join } from 'path'
|
||||
@ -22,10 +23,14 @@ export async function runSelfInstaller(inputs: Inputs): Promise<number> {
|
||||
const response = await fetch('https://pnpm.js.org/pnpm.js')
|
||||
response.body.pipe(cp.stdin)
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
const result = await new Promise<number>((resolve, reject) => {
|
||||
cp.on('error', reject)
|
||||
cp.on('close', resolve)
|
||||
})
|
||||
if (result === 0) {
|
||||
core.addPath(join(dest, 'node_modules/.bin'))
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
export default runSelfInstaller
|
||||
|
Loading…
Reference in New Issue
Block a user