Skip to content

72 create admin app #67

72 create admin app

72 create admin app #67

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install dependencies and build admin-app
run: |
cd admin-app
bun install
bun build:src
- name: Install dependencies and build user-app
run: |
cd user-app
bun install
bun build:src