From f173575427b028dde71bdb76dce10d27060b03ba Mon Sep 17 00:00:00 2001 From: Paul Hansen Date: Sun, 7 May 2023 01:08:50 -0500 Subject: [PATCH] Update CI to install wasm-pack from binary (#3754) --- .github/workflows/ci.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b174f38abd..88bcc0f3b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,14 +172,10 @@ jobs: - name: checkout repo uses: actions/checkout@v3 - # TODO: replace with this once there is a release containing this PR: - # https://github.com/rustwasm/wasm-pack/pull/1185 - # - name: Install wasm-pack - # uses: taiki-e/install-action@v2 - # with: - # tool: wasm-pack - - name: install wasm-pack - run: cargo install --git https://github.com/rustwasm/wasm-pack --rev e1010233b0ce304f42cda59962254bf30ae97c3e wasm-pack + - name: Install wasm-pack + uses: taiki-e/install-action@v2 + with: + tool: wasm-pack - name: execute tests run: |