Skip to content

Tighten mobile packing view: bigger names, expand cards, slim qty pill #61

Tighten mobile packing view: bigger names, expand cards, slim qty pill

Tighten mobile packing view: bigger names, expand cards, slim qty pill #61

Workflow file for this run

name: Build
permissions:
contents: read
on:
push:
branches:
- main
tags-ignore:
- '**' # Don't run on tags
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup Bun
uses: oven-sh/setup-bun@f4d14e03ff726c06358e5557344e1da148b56cf7 # v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Generate version info
run: bun run version:generate
- name: Build
run: bun run build
env:
PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.PUBLIC_CLERK_PUBLISHABLE_KEY }}
- name: Build complete
run: echo "Build successful (not deploying - only tags trigger deployment)"