https://github.com/ksylvest/bun-orb
A CircleCI Orb to simplify the installation of Bun
https://github.com/ksylvest/bun-orb
bun circleci
Last synced: about 1 month ago
JSON representation
A CircleCI Orb to simplify the installation of Bun
- Host: GitHub
- URL: https://github.com/ksylvest/bun-orb
- Owner: ksylvest
- License: mit
- Created: 2023-09-14T17:38:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-14T19:22:44.000Z (almost 3 years ago)
- Last Synced: 2025-03-22T19:01:53.823Z (about 1 year ago)
- Topics: bun, circleci
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bun (Orb)
[](https://circleci.com/gh/ksylvest/bun-orb) [](https://circleci.com/developer/orbs/orb/ksylvest/bun) [](https://raw.githubusercontent.com/ksylvest/bun-orb/master/LICENSE) [](https://discuss.circleci.com/c/ecosystem/orbs)
## Overview
A [CircleCI Orb](https://circleci.com/orbs/) to simplify the installation of [Bun](https://bun.sh/).
## Usage
```yaml
version: 2.1
orbs:
bun: ksylvest/bun@1.0.1
jobs:
example:
docker:
- image: cimg/base:stable
steps:
- checkout
- bun/install
- run: bun install
- run: bun run main.ts
workflows:
main:
jobs:
- example
```