[version-4-5] chore: bump react from 19.2.1 to 19.2.3 (#9059) #2693
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
| # This workflow will run Eslint and Test cases on the codebase | |
| # Jest is the default test runner for the project/ | |
| name: Eslint and Test cases | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths: | |
| - "src/**" | |
| - "plugins/**" | |
| - "utils/**" | |
| - "package.json" | |
| - "package-lock.json" | |
| concurrency: | |
| group: test-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run-ci: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - run: exit 0 | |
| build: | |
| name: Build | |
| needs: [run-ci] | |
| runs-on: ubuntu-latest | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - run: npm ci | |
| - name: Eslint | |
| run: | | |
| npm run lint | |
| - name: Test | |
| run: | | |
| npm run test |