chore(deps): bump react from 19.0.0-rc-0bc30748-20241028 to 19.0.0-rc.0 in /docs #518
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: 🧾 Code Checks | |
on: [merge_group, pull_request] | |
env: | |
CI: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Tests pass | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.12.3 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
- 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@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.12.3 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'pnpm' | |
- run: pnpm install | |
- run: pnpm run build | |
working-directory: ./packages/react |