Skip to content

feat: reworked bridge and new ui #1

feat: reworked bridge and new ui

feat: reworked bridge and new ui #1

Workflow file for this run

name: CI
on:
push:
paths:
- 'ui/**'
- '.github/workflows/ci.yml'
pull_request:
paths:
- 'ui/**'
- '.github/workflows/ci.yml'
jobs:
build:
name: Build Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
cache-dependency-path: "ui/pnpm-lock.yaml"
- name: Install deps
run: pnpm install --frozen-lockfile
working-directory: ui
- name: Try build
run: pnpm build
working-directory: ui
env:
CI: true