[npm](deps): Bump the dependencies group in /react with 6 updates #459
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| branches: | |
| - react-rewrite | |
| pull_request: | |
| branches: | |
| - react-rewrite | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-24.04 | |
| defaults: | |
| run: | |
| working-directory: react | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: latest | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - name: Install Dependencies | |
| run: | | |
| pnpm install --frozen-lockfile --ignore-scripts | |
| - name: Build Website | |
| run: pnpm run build | |