fix(client): remove invalid maxFacetHits
in SearchForHits
extension
#509
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: Dart CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
analyze: | |
timeout-minutes: 15 | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Git Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "Install Flutter" | |
uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
flutter-version: ${{ env.flutter_version }} | |
- name: "Install Tools" | |
run: | | |
flutter pub global activate melos | |
- name: "Bootstrap Workspace" | |
run: melos bootstrap --verbose | |
- name: "Dart Analyze" | |
run: | | |
melos run analyze | |
- name: "Pub Check" | |
if: github.ref == 'refs/heads/main' | |
run: | | |
melos run lint:pub | |
format: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 15 | |
steps: | |
- name: "Git Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "Install Flutter" | |
uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
flutter-version: ${{ env.flutter_version }} | |
- name: "Install Tools" | |
run: | | |
flutter pub global activate melos | |
- name: "Bootstrap Workspace" | |
run: melos bootstrap | |
- name: "Melos Format" | |
run: melos run format | |
test: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 30 | |
steps: | |
- name: "Git Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "Install Flutter" | |
uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
flutter-version: ${{ env.flutter_version }} | |
- name: "Install Tools" | |
run: | | |
flutter pub global activate melos | |
- name: "Bootstrap Workspace" | |
run: melos bootstrap | |
- name: "Flutter Test" | |
run: melos run test | |
pana: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
timeout-minutes: 15 | |
steps: | |
- name: "Git Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "Install Flutter" | |
uses: subosito/flutter-action@v2 | |
with: | |
cache: true | |
flutter-version: ${{ env.flutter_version }} | |
- name: "Install Tools" | |
run: | | |
dart pub global activate pana | |
flutter pub global activate melos | |
- name: "Bootstrap Workspace" | |
run: melos bootstrap --verbose | |
- name: "Pana check" | |
run: | | |
melos run pana |