mirror of
https://code.forgejo.org/pnpm/action-setup.git
synced 2025-05-17 20:34:44 +00:00
feat: add package_json_file option
Signed-off-by: Kengo TODA <skypencil@gmail.com>
This commit is contained in:
parent
11dd14d0c0
commit
b27f801bf9
5 changed files with 16 additions and 5 deletions
|
@ -6,6 +6,7 @@ export interface Inputs {
|
|||
readonly version?: string
|
||||
readonly dest: string
|
||||
readonly runInstall: RunInstall[]
|
||||
readonly packageJsonFile: string
|
||||
}
|
||||
|
||||
const options: InputOptions = {
|
||||
|
@ -18,6 +19,7 @@ export const getInputs = (): Inputs => ({
|
|||
version: getInput('version'),
|
||||
dest: parseInputPath('dest'),
|
||||
runInstall: parseRunInstall('run_install'),
|
||||
packageJsonFile: parseInputPath('package_json_file'),
|
||||
})
|
||||
|
||||
export default getInputs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue