build(deps): bump react and @types/react in /docs #1616
This file contains hidden or 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: 🧾 Code Checks | |
| on: [merge_group, pull_request] | |
| env: | |
| CI: true | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: React tests pass | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| cache: 'pnpm' | |
| node-version: '22' | |
| - run: pnpm install | |
| - run: pnpm run test:ci | |
| working-directory: ./tests | |
| react-build: | |
| runs-on: ubuntu-latest | |
| name: React successfully builds | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| cache: 'pnpm' | |
| node-version: '22' | |
| - run: pnpm install | |
| - run: pnpm run build | |
| working-directory: ./packages/react |