Skip to content

Migrates to package:web and js_interop #4012

Migrates to package:web and js_interop

Migrates to package:web and js_interop #4012

name: min version test
on:
push:
branches:
- main
- release/**
pull_request:
paths:
- "!**/*.md"
- "!**/class-diagram.svg"
- ".github/workflows/min_version_test.yml"
- "dart/**"
- "flutter/**"
- "min_version_test/**"
jobs:
cancel-previous-workflow:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # pin@0.12.1
with:
access_token: ${{ github.token }}
build-android:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "adopt"
java-version: "17"
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # pin@v2.16.0
with:
flutter-version: "3.19.0" #includes dart sdk 3.3.0
- name: Build Android
run: |
cd min_version_test
flutter pub get
flutter build appbundle
build-ios:
runs-on: macos-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # pin@v2.16.0
with:
flutter-version: "3.19.0" #includes dart sdk 3.3.0
- name: Build iOS
run: |
cd min_version_test
flutter pub get
flutter build ios --no-codesign
build-web:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 # pin@v2.16.0
with:
flutter-version: "3.19.0" #includes dart sdk 3.3.0
- name: Build web
run: |
cd min_version_test
flutter pub get
flutter build web --source-maps