From 49b652d8931ba6ade26ad4614fc876643d46319c Mon Sep 17 00:00:00 2001 From: Samuel Maier Date: Thu, 3 Oct 2024 18:24:07 +0200 Subject: [PATCH] rename CI step, document its purpose in a comment --- .github/workflows/ci.yml | 4 +++- .github/workflows/deploy.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) 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