chore(deps): Bump lint_staged from 0.3.0 to 0.4.0 #81
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 | |
- uses: dart-lang/[email protected] | |
- run: dart --version | |
- name: Get Dependencies | |
run: dart pub get | |
- name: Analyze | |
run: dart analyze . --fatal-infos | |
- name: Check Format | |
run: dart format . --output=none --set-exit-if-changed | |
- name: Run tests | |
run: dart test --reporter expanded |