From 86f32bb2c5521dc40475f24186684134a2bee5c3 Mon Sep 17 00:00:00 2001 From: Samuel Maier Date: Thu, 3 Oct 2024 18:20:51 +0200 Subject: [PATCH] lets try triggering rustup install separate from wasm-pack --- .github/workflows/ci.yml | 3 +++ .github/workflows/deploy.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82a814c..600fc24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,9 @@ jobs: - name: Install npm deps working-directory: ./test run: npm ci + - name: Trigger rustup installation + working-directory: ./test + run: cargo check - name: Run tests working-directory: ./test run: npm test diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c22b92f..72acc95 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,6 +11,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Trigger rustup installation + working-directory: ./test + run: cargo check - name: Build demo working-directory: ./demo run: |