fix: unbreak web build for 2.x (#241)

* fix: unbreak web build

* chore: add cspell config
This commit is contained in:
Eric Seidel
2024-11-20 09:35:49 -08:00
committed by GitHub
parent 8e40228558
commit 2ae6afbb65
7 changed files with 46 additions and 48 deletions
+8 -3
View File
@@ -29,10 +29,10 @@ inputs:
required: false
default: "lib"
description: Directories to report on when collecting coverage
platform:
example_platform:
required: false
default: "vm"
description: Platform to use when running tests
default: "web"
description: Platform to use when building example
runs:
using: "composite"
@@ -54,6 +54,11 @@ runs:
shell: ${{ inputs.shell }}
run: dart analyze --fatal-warnings ${{inputs.analyze_directories}}
- name: Build Example
working-directory: ${{ inputs.working_directory }}/example
shell: ${{ inputs.shell }}
run: flutter build ${{ inputs.example_platform }}
- name: Test
working-directory: ${{ inputs.working_directory }}
shell: ${{ inputs.shell }}