From aeebc65323d552d60b58c361cbfed2f38de12db7 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 1 Feb 2024 11:36:40 -0800 Subject: [PATCH 1/2] Test dart2wasm --- .github/workflows/test-package.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 4e4e97d..5ca1e30 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -62,3 +62,6 @@ jobs: - name: Run Chrome tests run: dart test --platform chrome if: always() && steps.install.outcome == 'success' + - name: Run Chrome tests - wasm + run: dart test --platform chrome --compiler dart2wasm + if: always() && steps.install.outcome == 'success' && matrix.sdk == 'dev' From 696e6f956af50c598e5232d5444219594a08a32f Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 1 Feb 2024 11:40:01 -0800 Subject: [PATCH 2/2] add todo --- .github/workflows/test-package.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 5ca1e30..fb748d7 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -64,4 +64,5 @@ jobs: if: always() && steps.install.outcome == 'success' - name: Run Chrome tests - wasm run: dart test --platform chrome --compiler dart2wasm + # TODO: drop `dev` filter when dart2wasm is working on stable if: always() && steps.install.outcome == 'success' && matrix.sdk == 'dev'