Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 22 days 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-14T19:22:44.000Z (over 1 year ago)
- Last Synced: 2024-12-06T23:52:12.276Z (about 1 month 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)
[![CircleCI Build Status](https://circleci.com/gh/ksylvest/bun-orb.svg?style=shield "CircleCI Build Status")](https://circleci.com/gh/ksylvest/bun-orb) [![CircleCI Orb Version](https://badges.circleci.com/orbs/ksylvest/bun.svg)](https://circleci.com/developer/orbs/orb/ksylvest/bun) [![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/ksylvest/bun-orb/master/LICENSE) [![CircleCI Community](https://img.shields.io/badge/community-CircleCI%20Discuss-343434.svg)](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/[email protected]
jobs:
example:
docker:
- image: cimg/base:stable
steps:
- checkout
- bun/install
- run: bun install
- run: bun run main.ts
workflows:
main:
jobs:
- example
```