diff options
| author | Dax Raad <[email protected]> | 2025-09-27 03:04:42 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-27 03:04:42 -0400 |
| commit | 4b94d98f893009580e02a9ce323a67ef5a5d818c (patch) | |
| tree | a14ec8ebd858548c1af0b3f418e8bd47e735cd3a /.github/workflows | |
| parent | d0043a4a7855a2891992d7a84c9e6a316f54fcb9 (diff) | |
| download | opencode-4b94d98f893009580e02a9ce323a67ef5a5d818c.tar.gz opencode-4b94d98f893009580e02a9ce323a67ef5a5d818c.zip | |
ci: improve test coverage
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 30 |
1 files changed, 30 insertions, 0 deletions
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 |
