Skip to content

Commit

Permalink
chore(ci): add bun action
Browse files Browse the repository at this point in the history
  • Loading branch information
stritti committed Feb 14, 2024
1 parent 36925b9 commit af3af83
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/bun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: bun CI

on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bun build --if-present

0 comments on commit af3af83

Please sign in to comment.