Skip to content

Commit

Permalink
feat: add wrap with observer assist
Browse files Browse the repository at this point in the history
  • Loading branch information
amondnet committed Dec 13, 2023
1 parent 3751fcf commit 34fb10a
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
package: ["mobx_codegen", "mobx", "mobx_lint"]
package: ["mobx_codegen", "mobx"]
version: ["stable"]

steps:
Expand Down Expand Up @@ -68,3 +68,31 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.package }}
files: ./${{ matrix.package }}/coverage/lcov.txt

build_lint_packages:
runs-on: ubuntu-latest

strategy:
matrix:
version: ["stable"]

steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}

- name: Install dependencies
working-directory: mobx_lint
run: dart pub get

- name: Analyze
working-directory: mobx_lint
run: dart analyze --fatal-warnings --fatal-infos .

- name: Run tests
working-directory: mobx_lint_flutter_test
run: |
flutter pub get
flutter test test

0 comments on commit 34fb10a

Please sign in to comment.