From e95e44f027008b460e035665c7f76423f6f5c068 Mon Sep 17 00:00:00 2001 From: Jeff Jacobson Date: Wed, 10 Apr 2024 14:09:04 -0700 Subject: [PATCH] ci: :construction_worker: Added Github Action for Bun --- .github/workflows/bun.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/bun.yml diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml new file mode 100644 index 00000000..0a591d3b --- /dev/null +++ b/.github/workflows/bun.yml @@ -0,0 +1,27 @@ +# Build with Bun, an alternative to Node.js and NPM. + +name: bun-types + +on: + push: + branches: [bun] + pull_request: + branches: [bun] + +jobs: + build: + name: build-app + runs-on: windows-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + - name: Install bun + uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + - name: Install dependencies + run: bun install + - name: test + run: bun run test + - name: Build app + run: bun run build