Skip to content

Support of react 19 + add a CI for it #1975

Support of react 19 + add a CI for it

Support of react 19 + add a CI for it #1975

Workflow file for this run

name: CI
# Pnpm setup based on https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CI: true
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node and PNPM
uses: ./.github/composite-actions/setup
- name: Build packages
run: pnpm build:pkg
- name: Generate documentation
run: pnpm doc:generate
- name: Build sample apps
run: pnpm build:apps
- name: Lint packages
run: pnpm lint
- name: Test packages
run: pnpm test