feat: rich text and Resource update (#33) #117
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
- uses: bluefireteam/melos-action@v1 | |
- name: Format, Lint, Publishability | |
run: melos run lint:all | |
- name: Run Tests | |
run: melos run test:coverage:all | |
- name: Archive Golden failures | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Golden failures | |
retention-days: 2 | |
path: | | |
**/test/**/failures/**/*.* | |
- name: Zweidenker Heinzelmen Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v1 | |
with: | |
exclude: '**/*_mixin.dart' | |
path: ./packages/zweidenker_heinzelmen/coverage/lcov.info | |
- name: ApptiveGrid Heinzelmen Coverage | |
uses: VeryGoodOpenSource/very_good_coverage@v1 | |
with: | |
path: ./packages/apptive_grid_heinzelmen/coverage/lcov.info |