feat(ref: no-ref): add translations #7
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: Quality Checks | |
on: [push] | |
jobs: | |
quality-check: | |
name: Lint and Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.27.1" | |
channel: "stable" | |
- name: Install Dependencies | |
run: flutter pub get | |
- name: Run Linter | |
run: flutter analyze | |
- name: Build Flutter Web | |
run: flutter build web |