mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 10:40:10 +08:00
31 lines
455 B
Markdown
31 lines
455 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@v0.1.3
|
|
with:
|
|
bun-version: latest
|
|
```
|
|
|
|
### Specific version
|
|
|
|
```yaml
|
|
- uses: xhyrom/setup-bun@v0.1.3
|
|
with:
|
|
bun-version: "0.1.3"
|
|
```
|
|
|
|
### Canary builds
|
|
|
|
```yaml
|
|
- uses: xhyrom/setup-bun@v0.1.3
|
|
with:
|
|
bun-version: canary
|
|
```
|