Skip to content

Remove the test: all feature. (#4722) #67

Remove the test: all feature. (#4722)

Remove the test: all feature. (#4722) #67

name: Test dashboard
on:
pull_request:
branches: [main]
paths:
- "dashboard/**"
- "packages/cocoon_common/**"
- ".github/workflows/dashboard_tests.yaml"
push:
branches: [main]
jobs:
test-dashboard:
runs-on: ubuntu-latest
defaults:
run:
working-directory: dashboard
steps:
- name: Set up Flutter
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046
with:
channel: stable
- name: Checkout code
uses: actions/checkout@v4
- name: Get packages
run: |
flutter packages get
- name: Flutter Analyze
run: |
flutter analyze --no-fatal-infos
- name: Dart Format
run: |
dart format --set-exit-if-changed .
- name: Flutter Test
run: |
flutter test --test-randomize-ordering-seed=random --reporter expanded