Skip to content

chore/update devtools ext to pub.dev #489

chore/update devtools ext to pub.dev

chore/update devtools ext to pub.dev #489

Workflow file for this run

name: Build
on:
pull_request:
paths-ignore:
- "**.md"
push:
branches:
- main
- dev
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@v3
- uses: dart-lang/setup-dart@v1.5.0
# Dart
- name: Install dependencies
run: dart pub get
working-directory: ./packages/solidart
# Flutter
- uses: subosito/flutter-action@v2.10.0
with:
channel: "stable"
- name: Install dependencies
run: flutter pub get
working-directory: ./packages/flutter_solidart
- name: Install melos
run: dart pub global activate melos
- name: Install VeryGoodCLI
run: dart pub global activate very_good_cli
- name: Analyze packages
run: melos run analyze
- name: Test packages
run: melos run test
- name: Combine coverage
run: melos run combine_coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./lcov.info