Skip to content

Commit

Permalink
Merge pull request #55 from tscircuit/remove-convert-units
Browse files Browse the repository at this point in the history
Workflow to Run Tests
  • Loading branch information
seveibar authored Oct 7, 2024
2 parents 457d707 + 252ddcb commit db6a5b6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/bun-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Created using @tscircuit/plop (npm install -g @tscircuit/plop)
name: Bun Test

on:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Run tests
run: bun test

0 comments on commit db6a5b6

Please sign in to comment.