feat: add toContainAnyBy* and toContainOneBy* query matchers #484
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: validate | |
| on: | |
| push: | |
| branches: | |
| - '+([0-9])?(.{+([0-9]),x}).x' | |
| - 'main' | |
| - 'next' | |
| - 'next-major' | |
| - 'beta' | |
| - 'alpha' | |
| - '!all-contributors/**' | |
| pull_request: {} | |
| permissions: {} | |
| jobs: | |
| main: | |
| permissions: | |
| contents: read | |
| # ignore all-contributors PRs | |
| if: ${{ !contains(github.head_ref, 'all-contributors') }} | |
| strategy: | |
| matrix: | |
| node: [22, 24] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: ⎔ Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: 📥 Download deps | |
| uses: bahmutov/npm-install@v1 | |
| with: | |
| useLockFile: false | |
| - name: ▶️ Run validate script | |
| run: npm run validate | |
| env: | |
| FORCE_COLOR: true | |
| - name: ⬆️ Upload coverage report | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| release: | |
| permissions: | |
| id-token: write # required for npm trusted publishing | |
| contents: write # to create release tags | |
| issues: write # to post semantic-release failure/success issues | |
| pull-requests: write # to comment on released pull requests | |
| needs: main | |
| runs-on: ubuntu-latest | |
| if: | |
| ${{ github.repository == 'testing-library/jest-dom' && | |
| contains('refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha', | |
| github.ref) && github.event_name == 'push' }} | |
| steps: | |
| - name: ⬇️ Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: ⎔ Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: 📥 Download deps | |
| uses: bahmutov/npm-install@v1 | |
| with: | |
| useLockFile: false | |
| - name: 🏗 Run build script | |
| run: npm run build | |
| - name: 🚀 Release | |
| uses: cycjimmy/semantic-release-action@v5 | |
| with: | |
| semantic_version: 25 | |
| branches: | | |
| [ | |
| '+([0-9])?(.{+([0-9]),x}).x', | |
| 'main', | |
| 'next', | |
| 'next-major', | |
| {name: 'beta', prerelease: true}, | |
| {name: 'alpha', prerelease: true} | |
| ] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |