Skip to content

Commit

Permalink
ci: 👷 Added Github Action for Bun
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffJacobson committed Jan 16, 2025
1 parent 2163033 commit e95e44f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/bun.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit e95e44f

Please sign in to comment.