Skip to content

🐛 fix #27

🐛 fix #27 #58

Workflow file for this run

name: PR Build
on:
pull_request:
types: [opened, reopened, synchronize]
paths:
- '**.dart'
- '**.yaml'
- '**.yml'
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install Melos
run: flutter pub global activate melos
- name: Bootstrap
run: melos bootstrap
- name: Build example app
run: |
cd packages/flutter_box_transform/example
flutter build web --release