Skip to content

Instantly share code, notes, and snippets.

@markodayan
Created September 9, 2023 12:34
Show Gist options
  • Save markodayan/229aa2db93c91b8def37e1fe4049a3ff to your computer and use it in GitHub Desktop.
Save markodayan/229aa2db93c91b8def37e1fe4049a3ff to your computer and use it in GitHub Desktop.
Bun GitHub Actions
name: bun-types
jobs:
build:
name: build-app
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build app
run: bun run build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment