feat(core): simplify SignalContainer & add type-safe computedFrom overloads #463
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: Build | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - "**.md" | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**.md" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dart-lang/setup-dart@v1 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: "stable" | |
| - name: Install melos | |
| run: dart pub global activate melos | |
| - name: Install dependencies | |
| run: melos exec --no-private flutter pub get | |
| - name: Analyze packages | |
| run: melos run analyze | |
| - name: Test packages | |
| run: melos run test | |
| - name: Combine coverage | |
| run: melos run coverage | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| files: ./lcov.info |