Skip to content

chore(tools): add widgetbook #13

chore(tools): add widgetbook

chore(tools): add widgetbook #13

Workflow file for this run

name: Flutter CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
- name: Get WidgetBook dependencies
run: flutter pub get
working-directory: widgetbook
- name: Install dependencies
run: flutter pub get
- name: Analyze code
run: flutter analyze
- name: Check formatting
run: dart format . --set-exit-if-changed
- name: Run tests
run: flutter test