Skip to content

refactor(webui): revert patch workaround for expo-router #187

refactor(webui): revert patch workaround for expo-router

refactor(webui): revert patch workaround for expo-router #187

Workflow file for this run

name: review
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
core:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v4
- name: πŸ— Setup project
uses: ./.github/actions/setup-project
- name: 🚨 Lint core
run: bun run lint -- --max-warnings 0
- name: πŸ“‹ Typecheck core
run: bun run typecheck
- name: πŸ§ͺ Test core
run: bun test
- name: πŸ‘· Build core
run: bun run build
webui:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v4
- name: πŸ— Setup project
uses: ./.github/actions/setup-project
with:
with-webui: true
# Required for typechecking webui
- name: πŸ‘· Build core
run: bun run build
- name: πŸ“‹ Typecheck webui
run: bun run typecheck
working-directory: webui
- name: πŸ‘· Build webui
run: bun run build
working-directory: webui