Fix read model queries when selecting deeply-nested arrays (local provider) #592
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: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'website/**' | |
- '.github/**' | |
- '.vscode/**' | |
- 'packages/**/.vscode/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'website/**' | |
- '.github/**' | |
- '.vscode/**' | |
- 'packages/**/.vscode/**' | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Unit tests | |
uses: ./.github/actions/call-rush | |
with: | |
command: test -v |