Skip to content

[Hierarchies-react]: fix initial root loading when no change event is raised #2342

[Hierarchies-react]: fix initial root loading when no change event is raised

[Hierarchies-react]: fix initial root loading when no change event is raised #2342

Workflow file for this run

name: CI
on:
pull_request:
branches: ["master", "stable"]
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
runs-on: ubuntu-latest
name: Lint Build and run Tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run prettier
run: pnpm prettier
- name: Build, Lint, Test
env:
NODE_ENV: "development"
run: pnpm lage build lint cover
docs:
runs-on: ubuntu-latest
name: Validate docs
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check code snippets
run: pnpm check-extractions
- name: Validate markdowns
run: pnpm validate-markdowns