setup-bun/README.md

23 lines
359 B
Markdown
Raw Normal View History

2022-07-11 10:18:22 +02:00
# 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
2022-07-12 09:59:54 +02:00
- uses: xhyrom/setup-bun@v0.1.2
2022-07-11 10:18:22 +02:00
with:
bun-version: latest
```
### Specific version
```yaml
2022-07-12 09:59:54 +02:00
- uses: xhyrom/setup-bun@v0.1.2
2022-07-11 10:18:22 +02:00
with:
2022-07-12 09:59:54 +02:00
bun-version: "0.1.3"
2022-07-11 17:00:34 +02:00
```