Skip to content

feat(ECOM-11): password #26

feat(ECOM-11): password

feat(ECOM-11): password #26

## name of your github action
name: Flutter Unit Testing Action
## when will the action trigger
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
## the action script
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.35.2
- run: flutter --version
- name: Install packages
run: flutter pub get
- name: Run generator
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: Run test
run: flutter test test