bus history list page added #22
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: Frontend CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.6' | |
- name: Checkout Flutter 3.24.1 | |
shell: bash | |
run: | | |
cd $FLUTTER_ROOT; | |
git fetch --tags; | |
git checkout 3.24.1; | |
flutter --version; | |
- name: Install dependencies | |
run: flutter pub get | |
working-directory: front | |
- name: Run tests | |
run: flutter test | |
working-directory: front |