Skip to content

Commit 97ecdb3

Browse files
committed
Separating sdk and wasm tests
1 parent 83092c4 commit 97ecdb3

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/sdk.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
build:
10-
name: Build
10+
name: build
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
@@ -27,8 +27,19 @@ jobs:
2727
create-leo-app/dist
2828
2929
30-
test:
31-
name: Test
30+
test-wasm:
31+
name: test wasm
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
- uses: ./.github/actions/setup-yarn
36+
37+
- run: |
38+
yarn test:wasm
39+
40+
41+
test-sdk:
42+
name: test sdk
3243
runs-on: ubuntu-latest
3344
needs: build
3445
steps:
@@ -37,7 +48,7 @@ jobs:
3748
- uses: ./.github/actions/use-build
3849

3950
- run: |
40-
yarn test
51+
yarn test:sdk
4152
4253
4354
e2e:

0 commit comments

Comments
 (0)