Support of react 19 + add a CI for it #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI React 19 | |
# 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-react19-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node and PNPM | |
uses: ./github/workflows/setup.yml | |
with: | |
install_dependencies: false | |
- name: Install React 19 | |
run: pnpm install-react19 | |
- name: Install dependencies | |
run: pnpm i | |
- 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 |