Skip to content

feat: Enhance UI components and add new themes for improved experience #90

feat: Enhance UI components and add new themes for improved experience

feat: Enhance UI components and add new themes for improved experience #90

Workflow file for this run

name: Build
on:
push:
pull_request:
concurrency:
group: build-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build Vite app
run: pnpm run build
- name: Install bridge dependencies
run: pnpm install --frozen-lockfile
working-directory: bridge
- name: Build bridge
run: pnpm run build
working-directory: bridge