mirror of
https://github.com/pnpm/action-setup.git
synced 2026-06-23 16:33:50 +08:00
Compare commits
2 Commits
fix-standa
...
3e835812ef
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e835812ef | ||
|
|
551b42e879 |
48
.github/workflows/test.yaml
vendored
48
.github/workflows/test.yaml
vendored
@@ -194,6 +194,54 @@ jobs:
|
|||||||
pnpm add is-odd
|
pnpm add is-odd
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
|
standalone_windows_self_update:
|
||||||
|
# Regression guard for the patchPnpmEnv PATH-shadow bug. When
|
||||||
|
# standalone: true on Windows AND the requested pnpm differs from the
|
||||||
|
# bootstrap, the previous patchPnpmEnv prepended node_modules/.bin to
|
||||||
|
# PATH; that directory contains an npm-created pnpm.cmd shim pointing
|
||||||
|
# at the BOOTSTRAP pnpm, which shadowed the self-updated pnpm at
|
||||||
|
# $PNPM_HOME/bin and caused `pnpm install` inside the action to run
|
||||||
|
# under the bootstrap version. Exercising a newer-pnpm-only flag
|
||||||
|
# (`--no-runtime`, added in 11.1.0) makes the regression assertable:
|
||||||
|
# if the bootstrap (11.0.4) handles the install, it errors with
|
||||||
|
# "Unknown option: 'runtime'".
|
||||||
|
name: 'Standalone Windows self-update (PATH regression)'
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
||||||
|
|
||||||
|
- name: Set up package.json with a minimal manifest
|
||||||
|
# run_install needs a manifest to install against. Removing the
|
||||||
|
# repo's existing pnpm-lock.yaml avoids frozen-lockfile mismatch.
|
||||||
|
run: |
|
||||||
|
rm -f pnpm-lock.yaml
|
||||||
|
echo '{"name":"sw","private":true,"packageManager":"pnpm@11.1.0"}' > package.json
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Run the action
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
version: 11.1.0
|
||||||
|
standalone: true
|
||||||
|
run_install: |
|
||||||
|
args: ['--no-runtime']
|
||||||
|
|
||||||
|
- name: 'Test: pnpm install completed under the self-updated pnpm'
|
||||||
|
# If the bug recurs, the previous step's run_install will have failed
|
||||||
|
# the job with "Unknown option: 'runtime'", so reaching this step
|
||||||
|
# implies success. Still verify the version on PATH matches request.
|
||||||
|
env:
|
||||||
|
REQUIRED: '11.1.0'
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
actual="$(pnpm --version)"
|
||||||
|
echo "pnpm --version: ${actual}"
|
||||||
|
if [ "${actual}" != "${REQUIRED}" ]; then
|
||||||
|
echo "Expected pnpm ${REQUIRED}, got ${actual}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
shell: bash
|
||||||
|
|
||||||
cache_store_path:
|
cache_store_path:
|
||||||
# Regression guard for #233. When package.json pins a pnpm major that
|
# Regression guard for #233. When package.json pins a pnpm major that
|
||||||
# differs from the bootstrap pnpm's major, the bootstrap reports its
|
# differs from the bootstrap pnpm's major, the bootstrap reports its
|
||||||
|
|||||||
29
README.md
29
README.md
@@ -48,7 +48,7 @@ If `run_install` is a YAML string representation of either an object or an array
|
|||||||
|
|
||||||
### `cache_dependency_path`
|
### `cache_dependency_path`
|
||||||
|
|
||||||
**Optional** (_type:_ `string|string[]`, _default:_ `pnpm-lock.yaml`) File path to the pnpm lockfile, which contents hash will be used as a cache key.
|
**Optional** (_type:_ `string`, _default:_ `pnpm-lock.yaml`) File path to the pnpm lockfile, whose contents hash will be used as a cache key. Accepts multiple paths delimited by newlines.
|
||||||
|
|
||||||
### `package_json_file`
|
### `package_json_file`
|
||||||
|
|
||||||
@@ -158,6 +158,33 @@ jobs:
|
|||||||
|
|
||||||
**Note:** You don't need to run `pnpm store prune` at the end; post-action has already taken care of that.
|
**Note:** You don't need to run `pnpm store prune` at the end; post-action has already taken care of that.
|
||||||
|
|
||||||
|
### Cache dependencies from multiple lockfiles
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cache-and-install-multiple:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
|
- uses: pnpm/action-setup@v6
|
||||||
|
with:
|
||||||
|
version: 10
|
||||||
|
cache: true
|
||||||
|
cache_dependency_path: |
|
||||||
|
one/pnpm-lock.yaml
|
||||||
|
two/pnpm-lock.yaml
|
||||||
|
run_install: |
|
||||||
|
- cwd: one
|
||||||
|
- cwd: two
|
||||||
|
```
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
This action does not setup Node.js for you, use [actions/setup-node](https://github.com/actions/setup-node) yourself.
|
This action does not setup Node.js for you, use [actions/setup-node](https://github.com/actions/setup-node) yourself.
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ inputs:
|
|||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: 'false'
|
||||||
cache_dependency_path:
|
cache_dependency_path:
|
||||||
description: File path to the pnpm lockfile, which contents hash will be used as a cache key
|
description: File path to the pnpm lockfile, whose contents hash will be used as a cache key. Accepts multiple paths delimited by newlines.
|
||||||
required: false
|
required: false
|
||||||
default: 'pnpm-lock.yaml'
|
default: 'pnpm-lock.yaml'
|
||||||
package_json_file:
|
package_json_file:
|
||||||
|
|||||||
268
dist/index.js
vendored
268
dist/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,11 +1,8 @@
|
|||||||
import { setFailed, startGroup, endGroup } from '@actions/core'
|
import { setFailed, startGroup, endGroup } from '@actions/core'
|
||||||
import { spawnSync } from 'child_process'
|
import { spawnSync } from 'child_process'
|
||||||
import { Inputs } from '../inputs'
|
import { Inputs } from '../inputs'
|
||||||
import { patchPnpmEnv } from '../utils'
|
|
||||||
|
|
||||||
export function runPnpmInstall(inputs: Inputs) {
|
export function runPnpmInstall(inputs: Inputs) {
|
||||||
const env = patchPnpmEnv(inputs)
|
|
||||||
|
|
||||||
for (const options of inputs.runInstall) {
|
for (const options of inputs.runInstall) {
|
||||||
const args = ['install']
|
const args = ['install']
|
||||||
if (options.recursive) args.unshift('recursive')
|
if (options.recursive) args.unshift('recursive')
|
||||||
@@ -14,11 +11,16 @@ export function runPnpmInstall(inputs: Inputs) {
|
|||||||
const cmdStr = ['pnpm', ...args].join(' ')
|
const cmdStr = ['pnpm', ...args].join(' ')
|
||||||
startGroup(`Running ${cmdStr}...`)
|
startGroup(`Running ${cmdStr}...`)
|
||||||
|
|
||||||
|
// spawnSync inherits process.env, which already has $PNPM_HOME/bin and
|
||||||
|
// $PNPM_HOME prepended via addPath() in install-pnpm. Do NOT pass a
|
||||||
|
// hand-patched env that adds node_modules/.bin to the front — on
|
||||||
|
// Windows standalone, .bin/pnpm.cmd is an npm shim pointing at the
|
||||||
|
// BOOTSTRAP pnpm, which would shadow the self-updated one and break
|
||||||
|
// newer-pnpm-only behavior.
|
||||||
const { error, status } = spawnSync('pnpm', args, {
|
const { error, status } = spawnSync('pnpm', args, {
|
||||||
stdio: 'inherit',
|
stdio: 'inherit',
|
||||||
cwd: options.cwd,
|
cwd: options.cwd,
|
||||||
shell: true,
|
shell: true,
|
||||||
env,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
endGroup()
|
endGroup()
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { warning, startGroup, endGroup } from '@actions/core'
|
import { warning, startGroup, endGroup } from '@actions/core'
|
||||||
import { spawnSync } from 'child_process'
|
import { spawnSync } from 'child_process'
|
||||||
import { Inputs } from '../inputs'
|
import { Inputs } from '../inputs'
|
||||||
import { patchPnpmEnv } from '../utils'
|
|
||||||
|
|
||||||
export function pruneStore(inputs: Inputs) {
|
export function pruneStore(inputs: Inputs) {
|
||||||
if (inputs.runInstall.length === 0) {
|
if (inputs.runInstall.length === 0) {
|
||||||
@@ -10,10 +9,11 @@ export function pruneStore(inputs: Inputs) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
startGroup('Running pnpm store prune...')
|
startGroup('Running pnpm store prune...')
|
||||||
|
// spawnSync inherits process.env (which has the right PATH from addPath
|
||||||
|
// in install-pnpm). See pnpm-install/index.ts for the rationale.
|
||||||
const { error, status } = spawnSync('pnpm', ['store', 'prune'], {
|
const { error, status } = spawnSync('pnpm', ['store', 'prune'], {
|
||||||
stdio: 'inherit',
|
stdio: 'inherit',
|
||||||
shell: true,
|
shell: true,
|
||||||
env: patchPnpmEnv(inputs),
|
|
||||||
})
|
})
|
||||||
endGroup()
|
endGroup()
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
import path from 'path'
|
|
||||||
import process from 'process'
|
|
||||||
import { Inputs } from '../inputs'
|
|
||||||
|
|
||||||
export const getBinDest = (inputs: Inputs): string => path.join(inputs.dest, 'node_modules', '.bin')
|
|
||||||
|
|
||||||
export const patchPnpmEnv = (inputs: Inputs): NodeJS.ProcessEnv => ({
|
|
||||||
...process.env,
|
|
||||||
PATH: path.join(getBinDest(inputs), 'bin') + path.delimiter + getBinDest(inputs) + path.delimiter + process.env.PATH,
|
|
||||||
})
|
|
||||||
Reference in New Issue
Block a user