build(deps): bump http-proxy-middleware from 2.0.6 to 2.0.7 in /docs #1250
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: Build | |
on: [push, pull_request] | |
jobs: | |
build_dart_packages: | |
runs-on: ubuntu-latest | |
container: | |
image: dart:${{ matrix.version }} | |
strategy: | |
matrix: | |
package: ["mobx_codegen", "mobx"] | |
version: ["stable", "beta"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
working-directory: ${{ matrix.package }} | |
run: dart pub get | |
- name: Analyze | |
working-directory: ${{ matrix.package }} | |
run: dart analyze --fatal-warnings --fatal-infos . | |
- name: Run tests | |
working-directory: ${{ matrix.package }} | |
run: ../tool/coverage.sh | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: ${{ matrix.package }} | |
files: ./${{ matrix.package }}/coverage/lcov.txt | |
build_flutter_packages: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: ["flutter_mobx"] | |
channel: ["stable", "beta"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.channel }} | |
- name: Install dependencies | |
run: flutter packages get | |
working-directory: ${{ matrix.package }} | |
- name: Analyze | |
run: flutter analyze | |
working-directory: ${{ matrix.package }} | |
- name: Run tests | |
run: flutter test --coverage --coverage-path coverage/lcov.txt | |
working-directory: ${{ matrix.package }} | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: ${{ matrix.package }} | |
files: ./${{ matrix.package }}/coverage/lcov.txt | |
build_lint_packages: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ matrix.package }} | |
strategy: | |
matrix: | |
package: ["mobx_lint"] #"mobx_lint_flutter_test"] - skipping as its failing builds | |
version: ["stable"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.channel }} | |
- name: Add pub cache bin to PATH | |
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
- name: Add pub cache to PATH | |
run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: flutter pub get | |
- run: dart pub global activate custom_lint | |
- name: Analyze | |
run: flutter analyze | |
- name: Run custom_lint | |
run: custom_lint | |
# Workaround to https://github.com/invertase/dart_custom_lint/issues/77 | |
if: matrix.package == 'mobx_lint_flutter_test' | |
- name: Run tests | |
if: matrix.package == 'mobx_lint_flutter_test' | |
# Workaround to https://github.com/dart-lang/sdk/issues/53530 | |
run: ../tool/coverage.sh | |
- name: Upload coverage to codecov | |
uses: codecov/codecov-action@v3 | |
if: matrix.package == 'mobx_lint_flutter_test' | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: mobx_lint | |
files: coverage/lcov.txt |