Mike Holownych 137597b02f fix: validate design data and support node builds
- add CSV structural validation and all-domain smoke tests
- repair malformed CSV rows in source and bundled CLI assets
- run data validation in CI and prepublish checks
- add npm build wrapper with TypeScript fallback when Bun is unavailable
- fix CLI asset resolution for TypeScript fallback builds
2026-07-03 23:16:28 +00:00

37 lines
830 B
YAML

name: Smoke test data
on:
pull_request:
paths:
- 'src/ui-ux-pro-max/data/**'
- 'src/ui-ux-pro-max/scripts/**'
- 'cli/assets/data/**'
- 'cli/assets/scripts/**'
- 'scripts/validate-csv.py'
- 'scripts/smoke-stacks.sh'
- 'scripts/smoke-domains.sh'
- '.github/workflows/smoke-stacks.yml'
push:
branches: [main]
workflow_dispatch:
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Validate CSV structure
run: python3 scripts/validate-csv.py
- name: Run domain smoke test
run: bash scripts/smoke-domains.sh
- name: Run stack smoke test
run: bash scripts/smoke-stacks.sh