Skip to content

feat: update changelog for version 0.0.7, modify release commands, an… #38

feat: update changelog for version 0.0.7, modify release commands, an…

feat: update changelog for version 0.0.7, modify release commands, an… #38

Workflow file for this run

name: Build Check
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
node-version: [20]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Build check passed
run: echo "✅ Build completed successfully"