mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 18:50:10 +08:00
22 lines
350 B
Markdown
22 lines
350 B
Markdown
|
# setup-bun
|
||
|
> Huge inspiration [setup-deno](https://github.com/denoland/setup-deno)
|
||
|
|
||
|
Set up your GitHub Actions workflow with a specific version of Bun.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
### Latest stable
|
||
|
|
||
|
```yaml
|
||
|
- uses: xhyrom/setup-bun@v1
|
||
|
with:
|
||
|
bun-version: latest
|
||
|
```
|
||
|
|
||
|
### Specific version
|
||
|
|
||
|
```yaml
|
||
|
- uses: xhyrom/setup-bun@v1
|
||
|
with:
|
||
|
bun-version: "0.1.2"
|
||
|
```
|