mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 18:50:10 +08:00
23 lines
359 B
Markdown
23 lines
359 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.2
|
|
with:
|
|
bun-version: latest
|
|
```
|
|
|
|
### Specific version
|
|
|
|
```yaml
|
|
- uses: xhyrom/setup-bun@v0.1.2
|
|
with:
|
|
bun-version: "0.1.3"
|
|
```
|