mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-14 22:08:06 +00: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 { spawn } from 'child_process'
|
||||||
import { execPath } from 'process'
|
import { execPath } from 'process'
|
||||||
import { join } from 'path'
|
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')
|
const response = await fetch('https://pnpm.js.org/pnpm.js')
|
||||||
response.body.pipe(cp.stdin)
|
response.body.pipe(cp.stdin)
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
const result = await new Promise<number>((resolve, reject) => {
|
||||||
cp.on('error', reject)
|
cp.on('error', reject)
|
||||||
cp.on('close', resolve)
|
cp.on('close', resolve)
|
||||||
})
|
})
|
||||||
|
if (result === 0) {
|
||||||
|
core.addPath(join(dest, 'node_modules/.bin'))
|
||||||
|
}
|
||||||
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
export default runSelfInstaller
|
export default runSelfInstaller
|
||||||
|
Loading…
Reference in New Issue
Block a user