From 430cacd894bc10a0c7071058ad2837b00ed8fda4 Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Thu, 6 Jun 2024 06:40:15 -0400 Subject: [PATCH] Attempt at fixing CI --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) 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