add prod build test GH action

This commit is contained in:
bakedpotatolord 2025-05-01 21:05:21 -06:00
commit 45b31d704e

24
.github/workflows/build-test.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Test Production Build
on:
# Runs on pushes targeting the default branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Checkout
uses: actions/checkout@v3
- name: Setup and Install dependencies
run: bun run setup
- name: run production mode
run: bun run prod