Skip to content

fixed bun command

fixed bun command #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Bun
run: curl -fsSL https://bun.sh/install | bash
- name: Add Bun to PATH
run: echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Install dependencies
run: bun install
- name: Build project
run: bun run build
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: binaries
path: ./dist/** # Adjust this path based on where your binaries are output