From 1556660ca5159d84bf28239825a25dca58f1fde3 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 7 Mar 2024 11:04:12 -0800 Subject: [PATCH] Test on wasm (dev) and JS (#269) --- .github/workflows/test-package.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index cf89e3c..c1132b1 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -59,3 +59,8 @@ jobs: - name: Run VM tests run: dart test --platform vm if: always() && steps.install.outcome == 'success' + - run: dart test --platform chrome --compiler dart2js + if: always() && steps.install.outcome == 'success' + - 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'