Skip to content

chore(deps): Bump lint_staged from 0.4.3 to 0.5.0 #93

chore(deps): Bump lint_staged from 0.4.3 to 0.5.0

chore(deps): Bump lint_staged from 0.4.3 to 0.5.0 #93

Workflow file for this run

# 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