chore(deps): bump commitlint_cli from 0.7.2 to 0.8.0 #21
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Note: This workflow uses the latest stable version of the Flutter SDK. | |
# You can specify other versions if desired, see documentation here: | |
# https://github.com/marketplace/actions/flutter-action | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.3.10' | |
channel: 'stable' | |
- run: flutter --version | |
- name: Install melos | |
run: dart pub global activate melos | |
- name: Add pub cache bin to PATH | |
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
- name: Bootstrap | |
run: melos bootstrap | |
# Uncomment this step to verify the use of 'dart format' on each commit. | |
- name: Check Format | |
run: melos format-check | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze | |
run: melos analyze |