build(deps): bump cross-spawn from 7.0.3 to 7.0.6 in /chat-backend #338
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
# Chat Application Linter | |
name: Lint Chat Application | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: | |
- main | |
# Jobs | |
jobs: | |
flutter-application-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
- name: Install packages | |
working-directory: ./chat-application | |
run: flutter pub get | |
- name: Run linter | |
working-directory: ./chat-application | |
run: flutter analyze --no-fatal-infos |