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 54a4e86 commit 1795959Copy full SHA for 1795959
.github/workflows/ci.yml
@@ -12,14 +12,8 @@ on:
12
workflow_dispatch:
13
14
jobs:
15
- unit-test:
+ setup-rust:
16
runs-on: ubuntu-latest
17
-
18
- strategy:
19
- fail-fast: false
20
- matrix:
21
- node-version: [18.x, 20.x]
22
23
steps:
24
- uses: actions/checkout@v4
25
with:
@@ -36,6 +30,19 @@ jobs:
36
30
cargo install wasm-pack --version 0.13.1
37
31
cargo install wasm-opt --version 0.116.1
38
32
33
+ unit-test:
34
+ needs: setup-rust
35
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
39
+ node-version: [18.x, 20.x]
40
+
41
+ steps:
42
+ - uses: actions/checkout@v4
43
+ with:
44
+ ref: ${{ github.event.pull_request.head.sha }}
45
46
- name: Setup node ${{ matrix.node-version }}
47
uses: actions/setup-node@v3
48
0 commit comments