perf: Use query instead of queries to reduce rerenders initially #30685
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: Unit Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- develop | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 6 | |
strategy: | |
fail-fast: true | |
matrix: | |
node: [18] | |
name: Unit tests (Jest) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Install dependencies | |
uses: './.github/actions/install-deps' | |
- name: Run tests | |
run: pnpm test:ci |