diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 600fc24..447e272 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,9 @@ jobs: - name: Install npm deps working-directory: ./test run: npm ci - - name: Trigger rustup installation + # For some reason isntalling the rust toolchain via wasm-pack leads to CI failures. + # This check will read the top level rustup-toolchain.toml and install the required stuff. + - name: Trigger toolchain installation working-directory: ./test run: cargo check - name: Run tests diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 72acc95..a574dad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,9 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Trigger rustup installation + # For some reason isntalling the rust toolchain via wasm-pack leads to CI failures. + # This check will read the top level rustup-toolchain.toml and install the required stuff. + - name: Trigger toolchain installation working-directory: ./test run: cargo check - name: Build demo