Skip to content

feat: README.md

feat: README.md #26

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