refactor: optimize build process by removing unnecessary npm install step

This commit is contained in:
Prad Nukala 2024-12-04 21:23:36 -05:00
parent 1a490cf07d
commit ec295c9f09

View File

@ -18,17 +18,19 @@ jobs:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Git Config
run: |
git config user.name "Prad N."
git config user.email "prad@sonr.io"
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Setup Git Config
run: |
bun install
git config user.name "Prad N."
git config user.email "prad@sonr.io"
- name: Build
run: bun install && bun run build
run: bun run build
- name: 'Automated Version Bump'
run: |