Skip to content

fix(data-table): add 'use no memo' to opt out of React Compiler #100

fix(data-table): add 'use no memo' to opt out of React Compiler

fix(data-table): add 'use no memo' to opt out of React Compiler #100

---
name: "Frontend React Doctor"
on:
push:
paths:
- "frontend/**"
- ".github/workflows/frontend-react-doctor.yml"
jobs:
react-doctor:
timeout-minutes: 5
runs-on: blacksmith-2vcpu-ubuntu-2404
permissions:
contents: read
defaults:
run:
working-directory: frontend
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
frontend/node_modules
key: ${{ runner.os }}-bun-frontend-${{ hashFiles('frontend/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-frontend-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run React Doctor
run: bun run doctor