Skip to content

Fix empty footprinter models showing (#160) #619

Fix empty footprinter models showing (#160)

Fix empty footprinter models showing (#160) #619

Workflow file for this run

# Created using @tscircuit/plop (npm install -g @tscircuit/plop)
name: Bun Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.1
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test
- name: Upload test artifacts (snapshots and diffs)
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-snapshots-and-diffs
path: |
tests/snapshot/**/*.snap.png
tests/snapshot/**/*.diff.png
retention-days: 7