We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83092c4 commit 97ecdb3Copy full SHA for 97ecdb3
.github/workflows/sdk.yml
@@ -7,7 +7,7 @@ env:
7
8
jobs:
9
build:
10
- name: Build
+ name: build
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
@@ -27,8 +27,19 @@ jobs:
27
create-leo-app/dist
28
29
30
- test:
31
- name: Test
+ test-wasm:
+ 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
43
44
needs: build
45
@@ -37,7 +48,7 @@ jobs:
48
- uses: ./.github/actions/use-build
49
50
- run: |
- yarn test
51
+ yarn test:sdk
52
53
54
e2e:
0 commit comments