mirror of
https://github.com/pnpm/action-setup.git
synced 2026-06-23 16:33:50 +08:00
Compare commits
4 Commits
v5
...
3a0d941b4b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3a0d941b4b | ||
|
|
2e223e0f0d | ||
|
|
d5bd7e8c9a | ||
|
|
44def7846a |
28
.github/workflows/pr-check.yaml
vendored
Normal file
28
.github/workflows/pr-check.yaml
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
name: pr-check
|
||||||
|
|
||||||
|
on: [ pull_request ]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-dist:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
||||||
|
|
||||||
|
- name: Setup pnpm
|
||||||
|
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
|
||||||
|
with:
|
||||||
|
run_install: true
|
||||||
|
version: 9
|
||||||
|
|
||||||
|
- name: Update dist/index.js
|
||||||
|
run: pnpm run build
|
||||||
|
|
||||||
|
- name: Check for uncommitted changes in dist
|
||||||
|
run: git diff --exit-code dist/index.js
|
||||||
2
dist/index.js
vendored
2
dist/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -5,6 +5,7 @@ import { readFileSync } from 'fs'
|
|||||||
import path from 'path'
|
import path from 'path'
|
||||||
import { execPath } from 'process'
|
import { execPath } from 'process'
|
||||||
import util from 'util'
|
import util from 'util'
|
||||||
|
import * as yaml from 'yaml'
|
||||||
import { Inputs } from '../inputs'
|
import { Inputs } from '../inputs'
|
||||||
import { parse as parseYaml } from 'yaml'
|
import { parse as parseYaml } from 'yaml'
|
||||||
|
|
||||||
@@ -95,10 +96,18 @@ Otherwise, please specify the pnpm version in the action configuration.`)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (typeof packageManager !== 'string') {
|
if (typeof packageManager !== 'string') {
|
||||||
throw new Error(`No pnpm version is specified.
|
if (GITHUB_WORKSPACE) {
|
||||||
|
try {
|
||||||
|
const { lockfileVersion } = yaml.parse(readFileSync(path.join(GITHUB_WORKSPACE, 'pnpm-lock.yaml'), 'utf8'))
|
||||||
|
const version = getPnpmVersionFromLockfile(lockfileVersion);
|
||||||
|
return `${ standalone ? '@pnpm/exe' : 'pnpm' }@${version}`
|
||||||
|
} catch (error: unknown) {
|
||||||
|
throw new Error(`No pnpm version is specified.
|
||||||
Please specify it by one of the following ways:
|
Please specify it by one of the following ways:
|
||||||
- in the GitHub Action config with the key "version"
|
- in the GitHub Action config with the key "version"
|
||||||
- in the package.json with the key "packageManager"`)
|
- in the package.json with the key "packageManager"`)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!packageManager.startsWith('pnpm@')) {
|
if (!packageManager.startsWith('pnpm@')) {
|
||||||
@@ -112,4 +121,21 @@ Please specify it by one of the following ways:
|
|||||||
return packageManager
|
return packageManager
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getPnpmVersionFromLockfile(
|
||||||
|
lockfileVersion: string | undefined
|
||||||
|
): string | undefined {
|
||||||
|
switch (true) {
|
||||||
|
case lockfileVersion === '5.3':
|
||||||
|
return 'latest-6';
|
||||||
|
case lockfileVersion === '5.4':
|
||||||
|
return 'latest-7';
|
||||||
|
case lockfileVersion === '6.0' || lockfileVersion === '6.1':
|
||||||
|
return 'latest-8';
|
||||||
|
case lockfileVersion === '7.0' || lockfileVersion === '9.0':
|
||||||
|
return 'latest-9';
|
||||||
|
default:
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export default runSelfInstaller
|
export default runSelfInstaller
|
||||||
|
|||||||
Reference in New Issue
Block a user