Skip to content

feat: board live sync #12

feat: board live sync

feat: board live sync #12

Workflow file for this run

name: UI CI
on:
pull_request:
branches: [main]
paths:
- "apps/frontend/**"
- ".github/workflows/ui-ci.yml"
jobs:
lint-and-build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/frontend
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
cache-dependency-path: apps/frontend/package-lock.json
- name: Install dependencies
run: npm ci
continue-on-error: true
- name: Install dependencies (no lockfile)
if: failure()
run: npm install
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Test
run: npm run test
- name: Build
run: npm run build