Skip to content

Commit 60f2b5d

Browse files
authored
Run fixnum tests with dart2wasm (#906)
1 parent 5c3e2c3 commit 60f2b5d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/fixnum.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
sdk: [3.1.0, dev]
31+
sdk: [3.4.4, dev]
3232
steps:
3333
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
3434
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
@@ -55,7 +55,7 @@ jobs:
5555
matrix:
5656
# Add macos-latest and/or windows-latest if relevant for this package.
5757
os: [ubuntu-latest]
58-
sdk: [3.1.0, dev]
58+
sdk: [3.4.4, dev]
5959
steps:
6060
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
6161
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
@@ -67,6 +67,9 @@ jobs:
6767
- name: Run VM tests
6868
run: dart test --platform vm
6969
if: always() && steps.install.outcome == 'success'
70-
- name: Run Chrome tests
71-
run: dart test --platform chrome
70+
- name: Run JS tests
71+
run: dart test --platform chrome --compiler dart2js
72+
if: always() && steps.install.outcome == 'success'
73+
- name: Run Wasm tests
74+
run: dart test --platform chrome --compiler dart2wasm
7275
if: always() && steps.install.outcome == 'success'

0 commit comments

Comments
 (0)