chore: bump the react group across 2 directories with 2 updates #2986
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: Check Test | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| paths: | |
| - 'core-api/**' | |
| - 'package*.json' | |
| - 'pnpm-lock.yaml' | |
| - 'pnpm-workspace.yaml' | |
| - '.npmrc' | |
| - 'tsconfig*.json' | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths: | |
| - 'core-api/**' | |
| - 'package*.json' | |
| - 'pnpm-lock.yaml' | |
| - 'pnpm-workspace.yaml' | |
| - '.npmrc' | |
| - 'tsconfig*.json' | |
| jobs: | |
| test: | |
| name: Check Test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: core-api | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 10.33.2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| cache-dependency-path: pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| working-directory: . | |
| - name: Run tests | |
| run: pnpm run test | |
| working-directory: core-api |