From 4b94d98f893009580e02a9ce323a67ef5a5d818c Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 27 Sep 2025 03:04:42 -0400 Subject: ci: improve test coverage --- .github/workflows/test.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/test.yml (limited to '.github') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..35023faac --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,30 @@ +name: test + +on: + push: + branches-ignore: + - production + pull_request: + branches-ignore: + - production + workflow_dispatch: +jobs: + format: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Setup Bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: 1.2.21 + + - name: run + run: | + bun install + bun turbo test + env: + CI: true -- cgit v1.2.3