Skip to content

feat(llc): Add updateWhere and batchReplace methods for list manipula… #83

feat(llc): Add updateWhere and batchReplace methods for list manipula…

feat(llc): Add updateWhere and batchReplace methods for list manipula… #83

name: stream_core_flutter_workflow
env:
FLUTTER_CHANNEL: stable
ENV_PROPERTIES: ${{ secrets.ENV_PROPERTIES }}
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
timeout-minutes: 15
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
cache-key: flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
channel: ${{ env.FLUTTER_CHANNEL }}
- name: Install Tools
run: |
flutter pub global activate melos
flutter pub global activate remove_from_coverage
- name: Bootstrap Workspace
run: melos bootstrap --verbose
- name: Dart Analyze
run: |
melos run analyze
- name: Check formatting
run: |
melos run format:verify
## Test and coverage reporting
- name: "Flutter Test"
run: melos run test:all
- name: "Collect Coverage"
run: melos run coverage:ignore-file --no-select
- name: "Upload Coverage"
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
files: packages/*/coverage/lcov.info