Skip to content

Commit

Permalink
Build Action (#14)
Browse files Browse the repository at this point in the history
* Create build.yml

* fix: format workflow
  • Loading branch information
azaleacolburn authored Dec 1, 2024
1 parent 39736e1 commit efc08ff
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
format:
runs-on: ubuntu-latest
name: Build Application
steps:
- name: Checkout
- uses: actions/checkout@v3

- name: Setup
- uses: oven-sh/setup-bun@v2

- name: Install
- run: bun install

- name: Build
- run: bun run build

0 comments on commit efc08ff

Please sign in to comment.