Skip to content

Commit 005e21c

Browse files
committed
run wasm tests
1 parent f95bdb4 commit 005e21c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/run-tests-default.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ 'ubuntu-latest' ]
17-
target: [ 'jvmAll', 'js', 'native' ]
17+
target: [ 'jvmAll', 'js', 'wasm', 'native' ]
1818
include:
1919
- os: 'macos-latest'
2020
target: 'wasm'
@@ -42,9 +42,13 @@ jobs:
4242
- uses: ./.github/actions/setup-environment
4343

4444
- name: Run tests
45-
if: ${{ matrix.target != 'connectedAndroid' }}
45+
if: ${{ matrix.target != 'connectedAndroid' && matrix.target != 'wasm' }}
4646
run: ./gradlew ${{ matrix.target }}Test --continue
4747

48+
- name: Run tests (wasm)
49+
if: ${{ matrix.target == 'wasm' }}
50+
run: ./gradlew ${{ matrix.target }}Test --continue --max-workers=1
51+
4852
- name: Run tests (android)
4953
if: ${{ matrix.target == 'connectedAndroid' }}
5054
uses: ./.github/actions/run-android-emulator-tests

0 commit comments

Comments
 (0)