diff options
author | 2023-02-03 11:01:14 -0800 | |
---|---|---|
committer | 2023-02-03 11:01:22 -0800 | |
commit | d16dffa2b4672ab1c3e497ae1852657fe994b19b (patch) | |
tree | 3fbaf514fe8fc61da571ae4acd9ef8ca5cbe4780 | |
parent | 65e0d10ee0c4e6a55a0fee30d35bbdb107e78d29 (diff) | |
download | bun-d16dffa2b4672ab1c3e497ae1852657fe994b19b.tar.gz bun-d16dffa2b4672ab1c3e497ae1852657fe994b19b.tar.zst bun-d16dffa2b4672ab1c3e497ae1852657fe994b19b.zip |
Add workflow for bun wiptest
-rw-r--r-- | .github/workflows/bun-test.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml new file mode 100644 index 000000000..3b7ef7798 --- /dev/null +++ b/.github/workflows/bun-test.yml @@ -0,0 +1,29 @@ +name: bun-test +on: + workflow_dispatch: + inputs: + release: + type: string + default: canary +jobs: + bun: + name: Bun + runs-on: ubuntu-latest + defaults: + run: + working-directory: packages/bun-test + steps: + - id: checkout + name: Checkout + uses: actions/checkout@v3 + - id: setup-bun + name: Setup Bun + uses: oven-sh/setup-bun@v0.1.8 + with: + bun-version: ${{ github.event.inputs.release || 'canary' }} + - id: setup-dependencies + name: Setup Dependencies + run: bun install + - id: test + name: Test + run: bun run test |