Skip to content

Commit

Permalink
infra: add build-check gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdancho authored Dec 28, 2023
1 parent 46a9757 commit 6278cd9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build-check

on:
workflow_dispatch:
push:
branches: ['main', 'dev']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- name: Build
run: |
bun install
bun run build

0 comments on commit 6278cd9

Please sign in to comment.