mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-21 22:18:25 +02:00
Use bun's bundler instead of node_modules
This commit is contained in:
parent
4573031972
commit
5a4722c39d
6 changed files with 51918 additions and 121 deletions
19
action.yml
19
action.yml
|
@ -6,14 +6,29 @@ branding:
|
|||
color: white
|
||||
inputs:
|
||||
bun-version:
|
||||
description: 'The version of Bun to install. (e.g. "latest", "canary", "0.5.6", <sha>)'
|
||||
description: 'The version of Bun to download. (e.g. "latest", "canary", "0.5.6", ">0.6.0", <sha>)'
|
||||
default: latest
|
||||
required: false
|
||||
bun-download-url:
|
||||
description: "A custom URL to download Bun as a .zip file."
|
||||
required: false
|
||||
check-latest:
|
||||
description: "If it should always check for a new version of Bun."
|
||||
default: "false"
|
||||
required: false
|
||||
baseline:
|
||||
description: "If a baseline build of Bun should be used."
|
||||
default: "false"
|
||||
required: false
|
||||
profile:
|
||||
description: "If a profile build of Bun should be used."
|
||||
default: "false"
|
||||
required: false
|
||||
outputs:
|
||||
bun-version:
|
||||
description: The version of Bun that was installed.
|
||||
cache-hit:
|
||||
description: If the version of Bun was cached.
|
||||
description: If the version of Bun was cached. (e.g. "true" or "false")
|
||||
runs:
|
||||
using: node16
|
||||
main: dist/action.js
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue