Skip to content

Merge pull request #5 from krystxf/feat/frontend #22

Merge pull request #5 from krystxf/feat/frontend

Merge pull request #5 from krystxf/feat/frontend #22

Workflow file for this run

name: CI
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: |
cd ./backend
bun install
bun run build
build-docker:
name: Build Docker Image
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: |
cd ./backend
bun install
bun run docker:build