Created
September 9, 2023 12:34
-
-
Save markodayan/229aa2db93c91b8def37e1fe4049a3ff to your computer and use it in GitHub Desktop.
Bun GitHub Actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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