diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 171c4bbf..9c8f48ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,9 +22,18 @@ jobs: with: node-version-file: '.nvmrc' cache: 'yarn' + + - name: Setup Rust + uses: dtolnay/rust-toolchain@stable + + - uses: Swatinem/rust-cache@v2 + with: + workspaces: './src/wasm-lib' - run: yarn install + - run: yarn build:wasm + - run: yarn build - run: yarn test